From 138b0cd7daae5f95e1f851bd885cc0b385732abf Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 8 Dec 2002 06:01:34 +0000 Subject: [PATCH] Namespacify more git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4956 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/Interpreter/Execution.cpp | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp index 3d6cf0bfb9c..b400a8a82f1 100644 --- a/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -25,20 +25,20 @@ using std::cerr; namespace { Statistic<> NumDynamicInsts("lli", "Number of dynamic instructions executed"); -} -static cl::opt -QuietMode("quiet", cl::desc("Do not emit any non-program output")); + cl::opt + 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 -ArrayChecksEnabled("array-checks", cl::desc("Enable array bound checks")); + cl::opt + ArrayChecksEnabled("array-checks", cl::desc("Enable array bound checks")); -static cl::opt -AbortOnExceptions("abort-on-exception", - cl::desc("Halt execution on a machine exception")); + cl::opt + AbortOnExceptions("abort-on-exception", + cl::desc("Halt execution on a machine exception")); +} // Create a TargetData structure to handle memory addressing and size/alignment // computations -- 2.50.1