diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-12-14 04:06:38 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-12-14 04:06:38 +0000 |
commit | 897889ef6bdac5ea87752c9472c57678f54ecf5b (patch) | |
tree | ffa2555952e5b3b6649f6a315271bf461b0e48b6 /llvm/test/LLVMC | |
parent | cf86de4067a4fee6348af7d974198f28e7c67a15 (diff) | |
download | bcm5719-llvm-897889ef6bdac5ea87752c9472c57678f54ecf5b.tar.gz bcm5719-llvm-897889ef6bdac5ea87752c9472c57678f54ecf5b.zip |
Add a test for the 'init' option property.
llvm-svn: 91259
Diffstat (limited to 'llvm/test/LLVMC')
-rw-r--r-- | llvm/test/LLVMC/Init.td | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/llvm/test/LLVMC/Init.td b/llvm/test/LLVMC/Init.td new file mode 100644 index 00000000000..fbed6d413aa --- /dev/null +++ b/llvm/test/LLVMC/Init.td @@ -0,0 +1,22 @@ +// Check that (init true/false) and (init "str") work. +// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t +// RUN: grep cl::init("some-string") %t +// RUN: grep cl::init(true) %t + +include "llvm/CompilerDriver/Common.td" + +def OptList : OptionList<[ +(switch_option "dummy1", (help "none"), (init true)), +(parameter_option "dummy2", (help "none"), (init "some-string")) +]>; + +def dummy_tool : Tool<[ +(cmd_line "dummy_cmd $INFILE"), +(in_language "dummy_lang"), +(out_language "dummy_lang"), +(actions (case + (switch_on "dummy1"), (forward "dummy1"), + (not_empty "dummy2"), (forward "dummy2"))) +]>; + +def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>; |