mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00

The driver enables -fdiagnostics-show-option by default, so flip the CC1 default to reduce the lengths of common CC1 command lines. This change also makes ParseDiagnosticArgs() consistently enable -fdiagnostics-show-option by default.
9 lines
284 B
C
9 lines
284 B
C
// RUN: not %clang_cc1 -Werror -Weverything %s 2> %t
|
|
// RUN: FileCheck < %t %s
|
|
|
|
int f0(int, unsigned);
|
|
int f0(int x, unsigned y) {
|
|
// CHECK: comparison of integers of different signs{{.*}} [-Werror,-Wsign-compare]
|
|
return x < y; // expected-error {{ : 'int' and 'unsigned int' }}
|
|
}
|