mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
3cd86bc569
It causes g++ to complain: unrecognized option '-Qunused-arguments' llvm-svn: 94670
10 lines
302 B
TableGen
10 lines
302 B
TableGen
// Check that multiple compilation graphs are allowed.
|
|
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
def Graph1 : CompilationGraph<[]>;
|
|
def Graph2 : CompilationGraph<[]>;
|
|
def Graph3 : CompilationGraph<[]>;
|