blob: d0cf52477252158ab6e3fefcb8057a39053c47cc [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4double FOO = 17;
5double BAR = 12.0;
6float XX = 12.0f;
7
8static char *procnames[] = {
9 "EXIT"
10};
11
12void *Data[] = { &FOO, &BAR, &XX };
13