parent
83d15dfe2d
commit
cd23593f02
|
@ -720,10 +720,10 @@ void DifferenceEngine::diff(Module *L, Module *R) {
|
||||||
|
|
||||||
if (LeftAnonCount != 0 || RightAnonCount != 0) {
|
if (LeftAnonCount != 0 || RightAnonCount != 0) {
|
||||||
SmallString<32> Tmp;
|
SmallString<32> Tmp;
|
||||||
Twine Message = "not comparing " + Twine(LeftAnonCount) +
|
logf(("not comparing " + Twine(LeftAnonCount) +
|
||||||
" anonymous functions in the left module and " + Twine(RightAnonCount) +
|
" anonymous functions in the left module and " +
|
||||||
" in the right module";
|
Twine(RightAnonCount) + " in the right module")
|
||||||
logf(Message.toStringRef(Tmp));
|
.toStringRef(Tmp));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (SmallVectorImpl<std::pair<Function*,Function*> >::iterator
|
for (SmallVectorImpl<std::pair<Function*,Function*> >::iterator
|
||||||
|
|
Loading…
Reference in New Issue