mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-08 14:49:38 +00:00
a30be59fa2
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
|