Specify variables' namespace directly instead of using an enclosing namespace.
authorMisha Brukman <brukman+llvm@gmail.com>
Mon, 21 Jun 2004 21:21:49 +0000 (21:21 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Mon, 21 Jun 2004 21:21:49 +0000 (21:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14302 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/TargetMachine.cpp

index 8ee16f3d3d20c74ae1ba85b0280dbe492899664c..8e114fc0b271f5f3bc14862c2148ee18a037634d 100644 (file)
@@ -21,10 +21,8 @@ using namespace llvm;
 // Command-line options that tend to be useful on more than one back-end.
 //
 
-namespace llvm { 
-  bool PrintMachineCode;
-  bool NoFramePointerElim;
-};
+bool llvm::PrintMachineCode;
+bool llvm::NoFramePointerElim;
 
 namespace {
   cl::opt<bool, true> PrintCode("print-machineinstrs",