[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.h

Reid Spencer reid at x10sys.com
Tue Aug 24 06:50:08 PDT 2004



Changes in directory llvm/tools/llvmc:

CompilerDriver.h updated: 1.7 -> 1.8
---
Log message:

Remove unneeded flags.


---
Diffs of the changes:  (+4 -6)

Index: llvm/tools/llvmc/CompilerDriver.h
diff -u llvm/tools/llvmc/CompilerDriver.h:1.7 llvm/tools/llvmc/CompilerDriver.h:1.8
--- llvm/tools/llvmc/CompilerDriver.h:1.7	Sun Aug 22 13:03:25 2004
+++ llvm/tools/llvmc/CompilerDriver.h	Tue Aug 24 08:49:57 2004
@@ -58,12 +58,10 @@
       /// @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






More information about the llvm-commits mailing list