Testcase for (llvm-gcc) 81399. Adjust an older
[oota-llvm.git] / test / FrontendC / 2008-11-02-WeakAlias.c
1 // RUN: %llvmgcc -S -emit-llvm -o - %s | grep weak
2 // PR2691
3
4 void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
5 void native_init_IRQ(void) {}