mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 09:46:06 +00:00

warning options to setup diagnostic state, but should not be emitting warnings as these would be rudndant with what the frontend emits. rdar://13001556 llvm-svn: 172497
6 lines
361 B
C++
6 lines
361 B
C++
// RUN: %clang_cc1 -Wmonkey -Wno-monkey -Wno-unused-command-line-arguments \
|
|
// RUN: -Wno-unused-command-line-argument %s 2>&1 | FileCheck %s
|
|
// CHECK: unknown warning option '-Wmonkey'
|
|
// CHECK: unknown warning option '-Wno-monkey'
|
|
// CHECK: unknown warning option '-Wno-unused-command-line-arguments'; did you mean '-Wno-unused-command-line-argument'?
|