diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-01-27 07:10:10 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-01-27 07:10:10 +0000 |
commit | f99134f470532eb58d18583f8d90244ac40c03cc (patch) | |
tree | 17d3152a7331a6bc7810ed225ed7fb7ef3370dca /llvm/test/LLVMC/MultiValuedOption.td | |
parent | d5e27af60ab9caa82d3683d33ccd28e3354fcbb7 (diff) | |
download | bcm5719-llvm-f99134f470532eb58d18583f8d90244ac40c03cc.tar.gz bcm5719-llvm-f99134f470532eb58d18583f8d90244ac40c03cc.zip |
Suppress clang warning about unused arguments.
llvm-svn: 94666
Diffstat (limited to 'llvm/test/LLVMC/MultiValuedOption.td')
-rw-r--r-- | llvm/test/LLVMC/MultiValuedOption.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/LLVMC/MultiValuedOption.td b/llvm/test/LLVMC/MultiValuedOption.td index 8cb18782700..3a1bbbf3483 100644 --- a/llvm/test/LLVMC/MultiValuedOption.td +++ b/llvm/test/LLVMC/MultiValuedOption.td @@ -2,7 +2,7 @@ // The dummy tool and graph are required to silence warnings. // 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 -Qunused-arguments -fexceptions -x c++ %t include "llvm/CompilerDriver/Common.td" |