mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 22:38:56 -04:00

incorrectly apply the multiple include optimization to files with guards like: #if !defined(x) MACRO where MACRO could expand to different things in different contexts. Thanks Neil! llvm-svn: 45716
5 lines
53 B
C
5 lines
53 B
C
#if !defined foo MACRO
|
|
#define foo
|
|
int x = 2;
|
|
#endif
|