diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-24 13:49:57 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-24 13:49:57 +0000 |
commit | fd2f728b48779974291660f6fc1418cd67e12285 (patch) | |
tree | fac89ccc311156dae493693b240f72e9f37c26c0 /tools | |
parent | 6f0161aac396de29d5a296f8b0ee81827b7e0a9c (diff) |
Remove unneeded flags.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16019 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc/CompilerDriver.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tools/llvmc/CompilerDriver.h b/tools/llvmc/CompilerDriver.h index e5bf42fda8..092685f53b 100644 --- a/tools/llvmc/CompilerDriver.h +++ b/tools/llvmc/CompilerDriver.h @@ -58,12 +58,10 @@ namespace llvm { /// @brief Action specific flags enum ConfigurationFlags { REQUIRED_FLAG = 0x0001, ///< Should the action always be run? - GROKS_DASH_O_FLAG = 0x0002, ///< Understands the -On options? - PREPROCESSES_FLAG = 0x0004, ///< Does this action preprocess? - TRANSLATES_FLAG = 0x0008, ///< Does this action translate? - OPTIMIZES_FLAG = 0x0010, ///< Does this action optimize? - OUTPUT_IS_ASM_FLAG = 0x0020, ///< Action produces .ll files? - FLAGS_MASK = 0x003F, ///< Union of all flags + PREPROCESSES_FLAG = 0x0002, ///< Does this action preprocess? + TRANSLATES_FLAG = 0x0004, ///< Does this action translate? + OUTPUT_IS_ASM_FLAG = 0x0008, ///< Action produces .ll files? + FLAGS_MASK = 0x000F, ///< Union of all flags }; /// This type is the input list to the CompilerDriver. It provides |