
Do not warn on reserved identifiers resulting from expansion of system macros. Also properly test -Wreserved-identifier wrt. system headers. Should fix #49592 Differential Revision: https://reviews.llvm.org/D118532
5 lines
160 B
C
5 lines
160 B
C
int __i_come_from_a_system_header; // no-warning
|
|
#define __I_AM_A_SYSTEM_MACRO() // no-warning
|
|
|
|
#define SOME_SYSTEM_MACRO() int __i_come_from_a_system_macro
|