diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2010-08-23 23:21:23 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2010-08-23 23:21:23 +0000 |
commit | d9a7316f9a72d8ea98313257ad8752c1dec36b89 (patch) | |
tree | 441b9e877c0380880798ef1c6ea7d1919bc340cc /test/LLVMC/Init.td | |
parent | 49d96380753c8cb93181a5662ed60dbf6034ee67 (diff) | |
download | external_llvm-d9a7316f9a72d8ea98313257ad8752c1dec36b89.zip external_llvm-d9a7316f9a72d8ea98313257ad8752c1dec36b89.tar.gz external_llvm-d9a7316f9a72d8ea98313257ad8752c1dec36b89.tar.bz2 |
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/Init.td')
-rw-r--r-- | test/LLVMC/Init.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LLVMC/Init.td b/test/LLVMC/Init.td index 59459d9..8ab07d8 100644 --- a/test/LLVMC/Init.td +++ b/test/LLVMC/Init.td @@ -22,4 +22,4 @@ def dummy_tool : Tool<[ (not_empty "dummy2"), (forward "dummy2"))) ]>; -def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>; +def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>; |