[llvm-commits] [llvm] r117197 - in /llvm/trunk: Makefile.rules test/LLVMC/MultipleOutputLanguages.td test/LLVMC/OptionPreprocessor.td utils/TableGen/TGParser.cpp

Mikhail Glushenkov foldr at codedgers.com
Sat Oct 23 00:32:53 PDT 2010


Author: foldr
Date: Sat Oct 23 02:32:53 2010
New Revision: 117197

URL: http://llvm.org/viewvc/llvm-project?rev=117197&view=rev
Log:
Remove -llvmc-temp-hack from tblgen.

Modified:
    llvm/trunk/Makefile.rules
    llvm/trunk/test/LLVMC/MultipleOutputLanguages.td
    llvm/trunk/test/LLVMC/OptionPreprocessor.td
    llvm/trunk/utils/TableGen/TGParser.cpp

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=117197&r1=117196&r2=117197&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Sat Oct 23 02:32:53 2010
@@ -1785,7 +1785,7 @@
 
 $(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
 	$(Echo) "Building LLVMC compilation graph description with tblgen"
-	$(Verb) $(TableGen) -gen-llvmc -llvmc-temp-hack -o $(call SYSPATH, $@) $<
+	$(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
 
 clean-local::
 	-$(Verb) $(RM) -f $(INCFiles)

Modified: llvm/trunk/test/LLVMC/MultipleOutputLanguages.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/LLVMC/MultipleOutputLanguages.td?rev=117197&r1=117196&r2=117197&view=diff
==============================================================================
--- llvm/trunk/test/LLVMC/MultipleOutputLanguages.td (original)
+++ llvm/trunk/test/LLVMC/MultipleOutputLanguages.td Sat Oct 23 02:32:53 2010
@@ -1,5 +1,5 @@
 // Check that multiple output languages work.
-// RUN: tblgen -I %p/../../include -llvmc-temp-hack --gen-llvmc %s -o %t
+// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
 // RUN: FileCheck -input-file %t %s
 // RUN: %compile_cxx %t
 // XFAIL: vg_leak
@@ -9,12 +9,12 @@
 def dummy_tool : Tool<[
     (command "dummy_cmd"),
     (in_language "dummy_lang"),
-    (out_language ["another_dummy_lang", "yet_another_dummy_lang"])
+    (out_language "another_dummy_lang", "yet_another_dummy_lang")
 ]>;
 
 def another_dummy_tool : Tool<[
     (command "another_dummy_cmd"),
-    (in_language ["another_dummy_lang", "some_other_dummy_lang"]),
+    (in_language "another_dummy_lang", "some_other_dummy_lang"),
     (out_language "executable"),
     (join)
 ]>;

Modified: llvm/trunk/test/LLVMC/OptionPreprocessor.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/LLVMC/OptionPreprocessor.td?rev=117197&r1=117196&r2=117197&view=diff
==============================================================================
--- llvm/trunk/test/LLVMC/OptionPreprocessor.td (original)
+++ llvm/trunk/test/LLVMC/OptionPreprocessor.td Sat Oct 23 02:32:53 2010
@@ -1,5 +1,5 @@
 // Test for the OptionPreprocessor and related functionality.
-// RUN: tblgen -I %p/../../include -llvmc-temp-hack --gen-llvmc %s -o %t
+// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
 // RUN: FileCheck -input-file %t %s
 // RUN: %compile_cxx %t
 // XFAIL: vg_leak
@@ -22,7 +22,7 @@
       // CHECK: foo = false;
       // CHECK: foo_p = "";
       // CHECK: foo_l.clear();
-      (and (switch_on "foo"), (any_switch_on ["bar", "baz"])),
+      (and (switch_on "foo"), (any_switch_on "bar", "baz")),
            [(warning "W1"), (unset_option "foo"),
                             (unset_option "foo_p"), (unset_option "foo_l")],
       // CHECK: W2
@@ -34,7 +34,7 @@
       // CHECK: foo_l.push_back("qwert");
       // CHECK: foo_l.push_back("yuiop");
       // CHECK: foo_l.push_back("asdf");
-      (and (switch_on ["foo", "bar"]), (any_empty ["foo_p", "bar_p"])),
+      (and (switch_on "foo", "bar"), (any_empty "foo_p", "bar_p")),
            [(warning "W2"), (set_option "foo"),
                             (set_option "bar", true),
                             (set_option "baz", false),
@@ -44,8 +44,8 @@
       // CHECK: foo = true;
       // CHECK: bar = true;
       // CHECK: baz = true;
-      (and (empty ["foo_p", "bar_p"]), (any_not_empty ["baz_p"])),
-           [(warning "W3"), (set_option ["foo", "bar", "baz"])])
+      (and (empty "foo_p", "bar_p"), (any_not_empty "baz_p")),
+           [(warning "W3"), (set_option "foo", "bar", "baz")])
 >;
 
 // Shut up warnings...

Modified: llvm/trunk/utils/TableGen/TGParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/TGParser.cpp?rev=117197&r1=117196&r2=117197&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/TGParser.cpp (original)
+++ llvm/trunk/utils/TableGen/TGParser.cpp Sat Oct 23 02:32:53 2010
@@ -20,11 +20,6 @@
 #include "llvm/Support/CommandLine.h"
 using namespace llvm;
 
-/// LLVMCHack - This is a temporary hack that changes how "(foo [1, 2, 3])"
-/// parses.
-/// FIXME: REMOVE THIS.
-static cl::opt<bool> LLVMCHack("llvmc-temp-hack", cl::ReallyHidden);
-
 //===----------------------------------------------------------------------===//
 // Support Code for the Semantic Actions.
 //===----------------------------------------------------------------------===//
@@ -1219,18 +1214,7 @@
       return 0;
     }
 
-    Init *Operator;
-    /// LLVMC Requires an old grammar and I don't know how to update it, placate
-    /// it in the short term by changing the grammar specifically for llvmc.
-    /// FIXME: REMOVE THIS.
-    if (!LLVMCHack)
-      Operator = ParseValue(CurRec);
-    else {
-      if (Lex.getCode() == tgtok::Id)
-        Operator = ParseIDValue(CurRec);
-      else
-        Operator = ParseOperation(CurRec);
-    }
+    Init *Operator = ParseValue(CurRec);
     if (Operator == 0) return 0;
 
     // If the operator name is present, parse it.





More information about the llvm-commits mailing list