llvm-for-llvmta/tools/clang/test/Analysis/Inputs/plist-macros-ctu.c

22 lines
198 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
#include "plist-macros-ctu.h"
#define M *X = (int *)0
void F1(int **X) {
M;
}
#undef M
#define M *Y = (int *)0
void F2(int **Y) {
M;
}
#define M1 *Z = (int *)0
void F3(int **Z) {
M1;
}