llvm-project/clang/test/Preprocessor/warn-macro-undef.c
Zixu Wang 89a0c4066b [clang][diagnostics] Add '-Wundef-prefix' warning option
Summary:
Add an `-Wundef-prefix=<arg1>,<arg2>...` option, which is similar to `-Wundef`, but only give warnings for undefined macros with the given prefixes.

Reviewers: ributzka, steven_wu, cishida, bruno, arphaman, rsmith

Reviewed By: ributzka, arphaman

Subscribers: riccibruno, dexonsmith, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D80751

This patch was authored by Zixu Wang <zixu_wang@apple.com>
2020-06-30 13:57:47 -07:00

53 lines
2.1 KiB
C

// RUN: %clang_cc1 %s -Eonly -Wundef -verify=undef
// RUN: %clang_cc1 %s -Eonly -Wundef-prefix=A,BC -verify=undef-prefix
// RUN: %clang_cc1 %s -Eonly -Wundef -Wundef-prefix=A,BC -verify=both
// RUN: %clang_cc1 %s -Eonly -Werror=undef -verify=undef-error
// RUN: %clang_cc1 %s -Eonly -Werror=undef-prefix -Wundef-prefix=A,BC -verify=undef-prefix-error
// RUN: %clang_cc1 %s -Eonly -Werror=undef -Wundef-prefix=A,BC -verify=both-error
extern int x;
#if AB // #1
#endif
// undef-warning@#1 {{'AB' is not defined, evaluates to 0}}
// undef-prefix-warning@#1 {{'AB' is not defined, evaluates to 0}}
// both-warning@#1 {{'AB' is not defined, evaluates to 0}}
// undef-error-error@#1 {{'AB' is not defined, evaluates to 0}}
// undef-prefix-error-error@#1 {{'AB' is not defined, evaluates to 0}}
// both-error-error@#1 {{'AB' is not defined, evaluates to 0}}
#if B // #2
#endif
// undef-warning@#2 {{'B' is not defined, evaluates to 0}}
// no warning for undef-prefix
// both-warning@#2 {{'B' is not defined, evaluates to 0}}
// undef-error-error@#2 {{'B' is not defined, evaluates to 0}}
// no error for undef-prefix
// both-error-error@#2 {{'B' is not defined, evaluates to 0}}
#define BC 0
#if BC // no warning/error
#endif
#undef BC
#if BC // #3
#endif
// undef-warning@#3 {{'BC' is not defined, evaluates to 0}}
// undef-prefix-warning@#3 {{'BC' is not defined, evaluates to 0}}
// both-warning@#3 {{'BC' is not defined, evaluates to 0}}
// undef-error-error@#3 {{'BC' is not defined, evaluates to 0}}
// undef-prefix-error-error@#3 {{'BC' is not defined, evaluates to 0}}
// both-error-error@#3 {{'BC' is not defined, evaluates to 0}}
// Test that #pragma-enabled 'Wundef' can override 'Wundef-prefix'
#pragma clang diagnostic error "-Wundef"
#if C // #4
#endif
// undef-error@#4 {{'C' is not defined, evaluates to 0}}
// undef-prefix-error@#4 {{'C' is not defined, evaluates to 0}}
// both-error@#4 {{'C' is not defined, evaluates to 0}}
// undef-error-error@#4 {{'C' is not defined, evaluates to 0}}
// undef-prefix-error-error@#4 {{'C' is not defined, evaluates to 0}}
// both-error-error@#4 {{'C' is not defined, evaluates to 0}}