xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2003-06-26-CFECrash.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 typedef struct min_info {
4   long offset;
5   unsigned file_attr;
6 } min_info;
7 
8 typedef struct Globals {
9   char answerbuf;
10   min_info info[1];
11   min_info *pInfo;
12 } Uz_Globs;
13 
14 extern Uz_Globs G;
15 
extract_or_test_files()16 int extract_or_test_files() {
17   G.pInfo = G.info;
18 }
19 
20