[RISCV] Match vcompress during shuffle lowering (#117748)
[llvm-project.git] / clang / test / Analysis / Inputs / plist-macros-ctu.c
blobf3e374caae58b5acda5a85419e63771c5b87bd0d
2 #include "plist-macros-ctu.h"
4 #define M *X = (int *)0
6 void F1(int **X) {
7 M;
10 #undef M
11 #define M *Y = (int *)0
13 void F2(int **Y) {
17 #define M1 *Z = (int *)0
19 void F3(int **Z) {
20 M1;