X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FLLVMC%2FNoActions.td;h=34b444066350c12feaca6e75f3e1848092d20132;hb=3b5dfcd8fd9edce8019b6d7541e2a3c5159b2852;hp=9c2d45a810f6bdfd8834f1edd59d637df4c45b20;hpb=f8bc1e4b277dc85a89f93738d7de4d324a093fb4;p=oota-llvm.git diff --git a/test/LLVMC/NoActions.td b/test/LLVMC/NoActions.td index 9c2d45a810f..34b44406635 100644 --- a/test/LLVMC/NoActions.td +++ b/test/LLVMC/NoActions.td @@ -1,15 +1,16 @@ // Check that tools without associated actions are accepted. // RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t // RUN: FileCheck -input-file %t %s -// RUN: %compile_cxx -fexceptions -x c++ %t +// RUN: %compile_cxx %t +// XFAIL: vg_leak include "llvm/CompilerDriver/Common.td" // CHECK: class dummy_tool : public Tool { def dummy_tool : Tool<[ -(cmd_line "dummy_cmd $INFILE"), +(command "dummy_cmd"), (in_language "dummy"), (out_language "dummy") ]>; -def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>; +def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;