Make valgrind happy.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120616 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Michael J. Spencer 2010-12-01 22:28:42 +00:00
parent cf590263cd
commit 506e579aa0

View File

@ -87,6 +87,7 @@ TEST(Support, Path) {
} }
outs() << "]\n"; outs() << "]\n";
#if 0 // Valgrind is whining about this.
outs() << " Reverse Iteration: ["; outs() << " Reverse Iteration: [";
for (sys::path::reverse_iterator ci = sys::path::rbegin(*i), for (sys::path::reverse_iterator ci = sys::path::rbegin(*i),
ce = sys::path::rend(*i); ce = sys::path::rend(*i);
@ -95,6 +96,7 @@ TEST(Support, Path) {
outs() << *ci << ','; outs() << *ci << ',';
} }
outs() << "]\n"; outs() << "]\n";
#endif
bool bres; bool bres;
StringRef sfres; StringRef sfres;