convert to filecheck.
[oota-llvm.git] / test / FrontendC / 2002-01-24-ComplexSpaceInType.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
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 type
7 //
8
9 struct { int X, Y; } Array[10];
10
11 void foo() {}