make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git] / test / FrontendC / 2002-01-24-ComplexSpaceInType.c
blob13d92c7306ee0a30f6b87d6decc0ca29e43d38e2
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
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 //
9 struct { int X, Y; } Array[10];
11 void foo() {}