summaryrefslogtreecommitdiffstats
path: root/clang/test/Analysis/Inputs/plist-macros-ctu.c
blob: f3e374caae58b5acda5a85419e63771c5b87bd0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#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;
}
OpenPOWER on IntegriCloud