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 | 0898d7d4a57cae6816ff633f5f590992f58ce6fc (patch) | |
tree | 81b6adc1b3e02ead6862029290dfb2605e02326c /test/LLVMC | |
parent | 898e9df8dbc65b9b7b92c35ac6673ac8651ff3e8 (diff) | |
download | external_llvm-0898d7d4a57cae6816ff633f5f590992f58ce6fc.zip external_llvm-0898d7d4a57cae6816ff633f5f590992f58ce6fc.tar.gz external_llvm-0898d7d4a57cae6816ff633f5f590992f58ce6fc.tar.bz2 |
Add a test for the 'init' option property.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91259 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LLVMC')
-rw-r--r-- | test/LLVMC/Init.td | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/LLVMC/Init.td b/test/LLVMC/Init.td new file mode 100644 index 0000000..fbed6d4 --- /dev/null +++ b/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">]>; |