blob: 10a7ed44458f58980b4611140bd5fb61c8eac0bf [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
Chris Lattneracd48e42003-06-27 02:37:53 +00003typedef struct min_info {
4 long offset;
5 unsigned file_attr;
6} min_info;
7
8typedef struct Globals {
9 char answerbuf;
10 min_info info[1];
11 min_info *pInfo;
12} Uz_Globs;
13
14extern Uz_Globs G;
15
16int extract_or_test_files() {
17 G.pInfo = G.info;
18}
19