20 lines
555 B
C
20 lines
555 B
C
// RUN: %clang_cc1 %s -Eonly -verify -Wno-all -Wmacro-redefined -DCLI_MACRO=1 -DWMACRO_REDEFINED
|
|
// RUN: %clang_cc1 %s -Eonly -verify -Wno-all -Wno-macro-redefined -DCLI_MACRO=1
|
|
|
|
#ifndef WMACRO_REDEFINED
|
|
// expected-no-diagnostics
|
|
#endif
|
|
|
|
#ifdef WMACRO_REDEFINED
|
|
// expected-note@1 {{previous definition is here}}
|
|
// expected-warning@+2 {{macro redefined}}
|
|
#endif
|
|
#define CLI_MACRO
|
|
|
|
#ifdef WMACRO_REDEFINED
|
|
// expected-note@+3 {{previous definition is here}}
|
|
// expected-warning@+3 {{macro redefined}}
|
|
#endif
|
|
#define REGULAR_MACRO
|
|
#define REGULAR_MACRO 1
|