summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2002-02-18-StaticData.c
blob: d0cf52477252158ab6e3fefcb8057a39053c47cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null


double FOO = 17;
double BAR = 12.0;
float XX = 12.0f;

static char *procnames[] = {
  "EXIT"
};

void *Data[] = { &FOO, &BAR, &XX };