diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 04:04:38 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 04:04:38 +0000 |
commit | 3a9b22234ff43c58315c1397d096f78229f85af1 (patch) | |
tree | 4b7721e4a95e2faec1242ea8799973716886add9 /tools/llvmc/CompilerDriver.h | |
parent | 5a7f13b2ae556dcc99f1fb44bb4af86a06ed14e3 (diff) | |
download | external_llvm-3a9b22234ff43c58315c1397d096f78229f85af1.zip external_llvm-3a9b22234ff43c58315c1397d096f78229f85af1.tar.gz external_llvm-3a9b22234ff43c58315c1397d096f78229f85af1.tar.bz2 |
Eliminate the force flag, configuration item, and related support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17296 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc/CompilerDriver.h')
-rw-r--r-- | tools/llvmc/CompilerDriver.h | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/tools/llvmc/CompilerDriver.h b/tools/llvmc/CompilerDriver.h index 9068c5c..e15bc22 100644 --- a/tools/llvmc/CompilerDriver.h +++ b/tools/llvmc/CompilerDriver.h @@ -120,17 +120,16 @@ namespace llvm { /// @brief Driver specific flags enum DriverFlags { DRY_RUN_FLAG = 0x0001, ///< Do everything but execute actions - FORCE_FLAG = 0x0002, ///< Force overwrite of output files - VERBOSE_FLAG = 0x0004, ///< Print each action - DEBUG_FLAG = 0x0008, ///< Print debug information - TIME_PASSES_FLAG = 0x0010, ///< Time the passes as they execute - TIME_ACTIONS_FLAG = 0x0020, ///< Time the actions as they execute - SHOW_STATS_FLAG = 0x0040, ///< Show pass statistics - EMIT_NATIVE_FLAG = 0x0080, ///< Emit native code instead of bc - EMIT_RAW_FLAG = 0x0100, ///< Emit raw, unoptimized bytecode - KEEP_TEMPS_FLAG = 0x0200, ///< Don't delete temporary files - STRIP_OUTPUT_FLAG = 0x0400, ///< Strip symbols from linked output - DRIVER_FLAGS_MASK = 0x07FF, ///< Union of the above flags + VERBOSE_FLAG = 0x0002, ///< Print each action + DEBUG_FLAG = 0x0004, ///< Print debug information + TIME_PASSES_FLAG = 0x0008, ///< Time the passes as they execute + TIME_ACTIONS_FLAG = 0x0010, ///< Time the actions as they execute + SHOW_STATS_FLAG = 0x0020, ///< Show pass statistics + EMIT_NATIVE_FLAG = 0x0040, ///< Emit native code instead of bc + EMIT_RAW_FLAG = 0x0080, ///< Emit raw, unoptimized bytecode + KEEP_TEMPS_FLAG = 0x0100, ///< Don't delete temporary files + STRIP_OUTPUT_FLAG = 0x0200, ///< Strip symbols from linked output + DRIVER_FLAGS_MASK = 0x03FF, ///< Union of the above flags }; /// @} |