mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
a60c58c6dc
llvm-svn: 60662
10 lines
335 B
TableGen
10 lines
335 B
TableGen
// Check that the compiler warns about unused options.
|
|
// This should fail because the output is printed on stderr.
|
|
// RUN: tblgen -I $srcroot/include --gen-llvmc %s | grep extern
|
|
// XFAIL: *
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
def OptList : OptionList<[(extern_switch "Wall"),
|
|
(extern_parameter "std"), (extern_list "L")]>;
|