Namespacify more
authorChris Lattner <sabre@nondot.org>
Sun, 8 Dec 2002 06:01:34 +0000 (06:01 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 8 Dec 2002 06:01:34 +0000 (06:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4956 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Interpreter/Execution.cpp

index 3d6cf0bfb9cde10375e5a25cc25ad17b91ba867a..b400a8a82f18a1faf5fdedc4c7c35b0bf6011200 100644 (file)
@@ -25,20 +25,20 @@ using std::cerr;
 
 namespace {
   Statistic<> NumDynamicInsts("lli", "Number of dynamic instructions executed");
-}
 
-static cl::opt<bool>
-QuietMode("quiet", cl::desc("Do not emit any non-program output"));
+  cl::opt<bool>
+  QuietMode("quiet", cl::desc("Do not emit any non-program output"));
 
-static cl::alias 
-QuietModeA("q", cl::desc("Alias for -quiet"), cl::aliasopt(QuietMode));
+  cl::alias 
+  QuietModeA("q", cl::desc("Alias for -quiet"), cl::aliasopt(QuietMode));
 
-static cl::opt<bool>
-ArrayChecksEnabled("array-checks", cl::desc("Enable array bound checks"));
+  cl::opt<bool>
+  ArrayChecksEnabled("array-checks", cl::desc("Enable array bound checks"));
 
-static cl::opt<bool>
-AbortOnExceptions("abort-on-exception",
-                  cl::desc("Halt execution on a machine exception"));
+  cl::opt<bool>
+  AbortOnExceptions("abort-on-exception",
+                    cl::desc("Halt execution on a machine exception"));
+}
 
 // Create a TargetData structure to handle memory addressing and size/alignment
 // computations