summaryrefslogtreecommitdiff
path: root/test/LLVMC/EnvParentheses.td
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-08-23 23:21:23 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-08-23 23:21:23 +0000
commitd9a7316f9a72d8ea98313257ad8752c1dec36b89 (patch)
tree441b9e877c0380880798ef1c6ea7d1919bc340cc /test/LLVMC/EnvParentheses.td
parent49d96380753c8cb93181a5662ed60dbf6034ee67 (diff)
downloadllvm-d9a7316f9a72d8ea98313257ad8752c1dec36b89.tar.gz
llvm-d9a7316f9a72d8ea98313257ad8752c1dec36b89.tar.bz2
llvm-d9a7316f9a72d8ea98313257ad8752c1dec36b89.tar.xz
llvmc: Make syntax more consistent.
CompilationGraph and LanguageMap definitions do not use special syntax anymore. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111862 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LLVMC/EnvParentheses.td')
-rw-r--r--test/LLVMC/EnvParentheses.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LLVMC/EnvParentheses.td b/test/LLVMC/EnvParentheses.td
index dbbb171d23..403beb9521 100644
--- a/test/LLVMC/EnvParentheses.td
+++ b/test/LLVMC/EnvParentheses.td
@@ -13,6 +13,6 @@ def dummy_tool : Tool<[
(out_language "dummy")
]>;
-def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
+def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;
def Graph : CompilationGraph<[]>;