[llvm-commits] [llvm] r50673 - /llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp
Bill Wendling
isanbard at gmail.com
Mon May 5 14:37:59 PDT 2008
Author: void
Date: Mon May 5 16:37:59 2008
New Revision: 50673
URL: http://llvm.org/viewvc/llvm-project?rev=50673&view=rev
Log:
Fix: Some classes were derived from a class in an anonymous namespace, but they
themselves weren't in the anonymous namespace.
Modified:
llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp?rev=50673&r1=50672&r2=50673&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/SimplifyLibCalls.cpp Mon May 5 16:37:59 2008
@@ -454,6 +454,7 @@
// Miscellaneous LibCall Optimizations
//===----------------------------------------------------------------------===//
+namespace {
//===---------------------------------------===//
// 'exit' Optimizations
@@ -1236,6 +1237,7 @@
}
};
+} // end anonymous namespace.
//===----------------------------------------------------------------------===//
// SimplifyLibCalls Pass Implementation
More information about the llvm-commits
mailing list