PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2002-05-23-StaticValues.c
blobbf583e203d35c79d03cef2e05356d7701ba9bb62
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
3 /* Make sure the frontend is correctly marking static stuff as internal! */
5 int X;
6 static int Y = 12;
8 static void foo(int Z) {
9 Y = Z;
12 void *test() {
13 foo(12);
14 return &Y;