Split functions from their declarations
This splits occurrences of functions from their declaration. This is necessary to flag integer functions consistently and not just single occurrences.
This commit is contained in:
@@ -105,7 +105,7 @@ Comparison prepareCopy(const Comparison &other)
|
||||
|
||||
Function prepareCopy(const Function &other)
|
||||
{
|
||||
return Function(std::string(other.name), prepareCopy(other.arguments));
|
||||
return Function(other.declaration, prepareCopy(other.arguments));
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user