brintos

brintos / llvm-project-archived public Read only

0
0
Text · 286 B · 5a1fb33 Raw
12 lines · c
1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null2 3// This caused generation of the following type name:4//   %Array = uninitialized global [10 x %complex int]5//6// which caused problems because of the space int the complex int type7//8 9struct { int X, Y; } Array[10];10 11void foo(void) {}12