mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
2fba0979fe
the command line options (at least according to GCC's documentation). GCC 4.2 didn't appear to actually do this, but it seems like that has been fixed in later release, so we will follow the docs. llvm-svn: 141119
10 lines
329 B
C
10 lines
329 B
C
// Check that #pragma diagnostic warning overrides -Werror. This matches GCC's
|
|
// original documentation, but not its earlier implementations.
|
|
//
|
|
// RUN: %clang_cc1 -verify -Werror %s
|
|
|
|
#pragma clang diagnostic warning "-Wsign-compare"
|
|
int f0(int x, unsigned y) {
|
|
return x < y; // expected-warning {{comparison of integers}}
|
|
}
|