blob: d0cf52477252158ab6e3fefcb8057a39053c47cc (
about) (
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 };
|