diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-08 06:01:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-08 06:01:34 +0000 |
commit | 138b0cd7daae5f95e1f851bd885cc0b385732abf (patch) | |
tree | 258a91cbd7bf1f3175d81fdf34b9564b758a093f /lib | |
parent | bbdabce1e97f77d383def3f06a51c4fc75d114cf (diff) | |
download | external_llvm-138b0cd7daae5f95e1f851bd885cc0b385732abf.zip external_llvm-138b0cd7daae5f95e1f851bd885cc0b385732abf.tar.gz external_llvm-138b0cd7daae5f95e1f851bd885cc0b385732abf.tar.bz2 |
Namespacify more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4956 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Execution.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp index 3d6cf0b..b400a8a 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<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 |