mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 14:58:59 -04:00

and a '!defined(X)' if we find a broken header guard. This is suboptimal; we should point the diagnostic at the 'X' token not the 'if' token, but it fixes the crash. llvm-svn: 184054
5 lines
44 B
C
5 lines
44 B
C
#if !defined(foo)
|
|
#define goo
|
|
int n;
|
|
#endif
|