Fix bug in Toolchain::equals(), removing unecessary toolchain creations

This will result in a speedup.
This commit is contained in:
dt
2009-06-22 12:45:07 +02:00
parent bdfd71661c
commit e2972a74a6

View File

@@ -55,7 +55,7 @@ bool ToolChain::equals(ToolChain *a, ToolChain *b)
if (a == 0 || b == 0)
return false;
if (a->type() == b->type())
a->equals(b);
return a->equals(b);
return false;
}