bolt/deps/llvm-18.1.8/clang/test/Analysis/Inputs/plist-macros-ctu.c
2025-02-14 19:21:04 +01:00

21 lines
198 B
C

#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;
}