summaryrefslogtreecommitdiff
path: root/test/LLVMC/MultipleOutputLanguages.td
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-10-23 07:32:53 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-10-23 07:32:53 +0000
commita73e5864951b2d4f50166d0155b8b99e4e7af535 (patch)
treefd3da6076001687bfada0af55a863ede8690a1c5 /test/LLVMC/MultipleOutputLanguages.td
parent17ef94fe1b714c437dfeca3bfdd72b37d8771c49 (diff)
downloadllvm-a73e5864951b2d4f50166d0155b8b99e4e7af535.tar.gz
llvm-a73e5864951b2d4f50166d0155b8b99e4e7af535.tar.bz2
llvm-a73e5864951b2d4f50166d0155b8b99e4e7af535.tar.xz
Remove -llvmc-temp-hack from tblgen.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117197 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LLVMC/MultipleOutputLanguages.td')
-rw-r--r--test/LLVMC/MultipleOutputLanguages.td6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/LLVMC/MultipleOutputLanguages.td b/test/LLVMC/MultipleOutputLanguages.td
index 16ce6be85c..ae0c92eefc 100644
--- a/test/LLVMC/MultipleOutputLanguages.td
+++ b/test/LLVMC/MultipleOutputLanguages.td
@@ -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)
]>;