2008-12-07 17:41:50 +01:00
|
|
|
// Check that extern options work.
|
|
|
|
// The dummy tool and graph are required to silence warnings.
|
2009-09-13 03:37:07 +02:00
|
|
|
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
2009-01-28 04:47:20 +01:00
|
|
|
// RUN: grep {extern .* AutoGeneratedSwitch_Wall} %t
|
2009-12-15 04:04:52 +01:00
|
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
2008-12-07 17:41:50 +01:00
|
|
|
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
|
2008-12-07 17:47:12 +01:00
|
|
|
def OptList : OptionList<[(switch_option "Wall", (extern)),
|
|
|
|
(parameter_option "std", (extern)),
|
|
|
|
(prefix_list_option "L", (extern))]>;
|
2008-12-07 17:41:50 +01:00
|
|
|
|
|
|
|
def dummy_tool : Tool<[
|
2009-10-08 06:40:08 +02:00
|
|
|
(cmd_line "dummy_cmd $INFILE"),
|
2008-12-07 17:41:50 +01:00
|
|
|
(in_language "dummy"),
|
|
|
|
(out_language "dummy"),
|
|
|
|
(actions (case
|
|
|
|
(switch_on "Wall"), (stop_compilation),
|
|
|
|
(not_empty "std"), (stop_compilation),
|
|
|
|
(not_empty "L"), (stop_compilation)))
|
|
|
|
]>;
|
|
|
|
|
|
|
|
def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
|