[llvm-commits] [poolalloc] r114625 - /poolalloc/trunk/lib/DSA/DSTest.cpp
Will Dietz
wdietz2 at illinois.edu
Wed Sep 22 21:25:07 PDT 2010
Author: wdietz2
Date: Wed Sep 22 23:25:07 2010
New Revision: 114625
URL: http://llvm.org/viewvc/llvm-project?rev=114625&view=rev
Log:
Touchup some formatting issues.
No functionality changes.
Modified:
poolalloc/trunk/lib/DSA/DSTest.cpp
Modified: poolalloc/trunk/lib/DSA/DSTest.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/lib/DSA/DSTest.cpp?rev=114625&r1=114624&r2=114625&view=diff
==============================================================================
--- poolalloc/trunk/lib/DSA/DSTest.cpp (original)
+++ poolalloc/trunk/lib/DSA/DSTest.cpp Wed Sep 22 23:25:07 2010
@@ -462,11 +462,11 @@
printTypesForNode(*test, NV);
if(test->str()!=typeRef) {
- errs() << "ERROR: Type test for type : \t" <<
- typeRef << " Failed \n";
- errs() << " But found this type:\t" <<
- test->str() << "\n";
- assert(0 && "Type verification failed!");
+ errs() << "ERROR: Testing for type : \t" <<
+ typeRef << "\n";
+ errs() << " But found this type :\t" <<
+ test->str() << "\n";
+ assert(0 && "Type verification failed!");
}
}
return true;
@@ -519,11 +519,11 @@
I != E; ++I ) {
if (shouldHaveFlag == (ActualFlags.find(*I) == std::string::npos))
{
- errs() << "ERROR: Verify flags for: \t" <<
- NodeFlagOption << "\n";
- errs() << " But found these flags:\t" <<
- ActualFlags << "\n";
- assert(0 && "Flag verification failed!");
+ errs() << "ERROR: Verify flags for: \t" <<
+ NodeFlagOption << "\n";
+ errs() << " But found these flags: \t" <<
+ ActualFlags << "\n";
+ assert(0 && "Flag verification failed!");
}
}
More information about the llvm-commits
mailing list