diff --git a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp index 3d6cf0bfb9cd..b400a8a82f18 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -25,21 +25,21 @@ using std::cerr; namespace { Statistic<> NumDynamicInsts("lli", "Number of dynamic instructions executed"); + + cl::opt + QuietMode("quiet", cl::desc("Do not emit any non-program output")); + + cl::alias + QuietModeA("q", cl::desc("Alias for -quiet"), cl::aliasopt(QuietMode)); + + cl::opt + ArrayChecksEnabled("array-checks", cl::desc("Enable array bound checks")); + + cl::opt + AbortOnExceptions("abort-on-exception", + cl::desc("Halt execution on a machine exception")); } -static 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)); - -static 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")); - // Create a TargetData structure to handle memory addressing and size/alignment // computations //