PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2008-11-02-WeakAlias.c
blob4bdc5c7bec9354b62adb970ab94e29a5ddb75482
1 // RUN: %llvmgcc -S -emit-llvm -o - %s | grep weak
2 // PR2691
4 void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
5 void native_init_IRQ(void) {}