diff options
Diffstat (limited to 'llvm/tools/llvm-diff/DifferenceEngine.cpp')
-rw-r--r-- | llvm/tools/llvm-diff/DifferenceEngine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/tools/llvm-diff/DifferenceEngine.cpp b/llvm/tools/llvm-diff/DifferenceEngine.cpp index 5be533d9af3..b2673c1407f 100644 --- a/llvm/tools/llvm-diff/DifferenceEngine.cpp +++ b/llvm/tools/llvm-diff/DifferenceEngine.cpp @@ -720,10 +720,10 @@ void DifferenceEngine::diff(Module *L, Module *R) { if (LeftAnonCount != 0 || RightAnonCount != 0) { SmallString<32> Tmp; - Twine Message = "not comparing " + Twine(LeftAnonCount) + - " anonymous functions in the left module and " + Twine(RightAnonCount) + - " in the right module"; - logf(Message.toStringRef(Tmp)); + logf(("not comparing " + Twine(LeftAnonCount) + + " anonymous functions in the left module and " + + Twine(RightAnonCount) + " in the right module") + .toStringRef(Tmp)); } for (SmallVectorImpl<std::pair<Function*,Function*> >::iterator |