summaryrefslogtreecommitdiffstats
path: root/llvm/test/tools/llvm-symbolizer/Inputs/discrim.c
blob: decbce8d454e6ec671a209403bb276c1a8564a5d (plain)
1
2
3
4
5
6
7
8
static volatile int do_mul;
static volatile int do_inc;

int main () {
  int x = 1;
  if (do_mul) x *= 2; else x /= 2;
  return do_inc ? ++x : --x;
}
OpenPOWER on IntegriCloud