PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2002-02-13-TypeVarNameCollision.c
blobec334013ae0199691b5a6c9fb109068e6288897d
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
3 /* This testcase causes a symbol table collision. Type names and variable
4 * names should be in distinct namespaces
5 */
7 typedef struct foo {
8 int X, Y;
9 } FOO;
11 static FOO foo[100];
13 int test() {
14 return foo[4].Y;