PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2002-01-24-ComplexSpaceInType.c
blob9559d5b37b79598fbbde5d18fa52f2730805fa73
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -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() {}