[llvm-commits] [llvm] r96127 - /llvm/trunk/tools/llvmc/plugins/Base/Base.td.in

Mikhail Glushenkov foldr at codedgers.com
Sat Feb 13 14:36:44 PST 2010


Author: foldr
Date: Sat Feb 13 16:36:43 2010
New Revision: 96127

URL: http://llvm.org/viewvc/llvm-project?rev=96127&view=rev
Log:
Revert r94752, turns out we don't need to touch these options.

Modified:
    llvm/trunk/tools/llvmc/plugins/Base/Base.td.in

Modified: llvm/trunk/tools/llvmc/plugins/Base/Base.td.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvmc/plugins/Base/Base.td.in?rev=96127&r1=96126&r2=96127&view=diff

==============================================================================
--- llvm/trunk/tools/llvmc/plugins/Base/Base.td.in (original)
+++ llvm/trunk/tools/llvmc/plugins/Base/Base.td.in Sat Feb 13 16:36:43 2010
@@ -50,11 +50,6 @@
     (help "Choose linker (possible values: gcc, g++)")),
  (parameter_option "mtune",
     (help "Target a specific CPU type"), (hidden)),
- (parameter_option "fmessage-length",
-    (help "Format error messages to fit on lines of about n characters "),
-    (hidden)),
- (parameter_option "std",
-    (help "Determine the language standard"), (hidden)),
 
  // TODO: Add a conditional compilation mechanism to make Darwin-only options
  // like '-arch' really Darwin-only.
@@ -153,8 +148,6 @@
          (not_empty "mtune"), (forward "mtune"),
          (not_empty "mcpu"), (forward "mcpu"),
          (not_empty "m"), (forward "m"),
-         (not_empty "std"), (forward "std"),
-         (not_empty "fmessage-length"), (forward "fmessage-length"),
          (switch_on "m32"), (forward "m32"),
          (switch_on "m64"), (forward "m64"),
          (switch_on "O0"), (forward "O0"),
@@ -202,7 +195,6 @@
  (actions (case
           (switch_on "c"), (stop_compilation),
           (not_empty "arch"), (forward "arch"),
-          (not_empty "fmessage-length"), (forward "fmessage-length"),
           (not_empty "Wa,"), (forward_value "Wa,")))
 ]>;
 
@@ -243,7 +235,6 @@
           (not_empty "weak_framework"), (forward "weak_framework"),
           (switch_on "m32"), (forward "m32"),
           (switch_on "m64"), (forward "m64"),
-          (not_empty "fmessage-length"), (forward "fmessage-length"),
           (not_empty "l"), (forward "l"),
           (not_empty "Wl,"), (forward "Wl,")))
 ]>;





More information about the llvm-commits mailing list