mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 19:49:36 +00:00
f9e9d33019
Also fix handling of macros within calls in the HTMLDiagnostics. This also adds a test case for r151774. llvm-svn: 151872
5 lines
70 B
C
5 lines
70 B
C
#define DEREF(p) *p = 0xDEADBEEF
|
|
void has_bug(int *p) {
|
|
DEREF(p);
|
|
}
|