Remove -llvmc-temp-hack from tblgen.
[oota-llvm.git] / test / LLVMC / MultipleOutputLanguages.td
index 16ce6be85c800ba88776816907ecff2122a4e5d0..ae0c92eefcf159e146e3ef92c728bd65e7583bb2 100644 (file)
@@ -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 @@ include "llvm/CompilerDriver/Common.td"
 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)
 ]>;