When removing a function from the function set and adding it to deferred, we
[llvm.git] / test / FrontendC / 2008-11-02-WeakAlias.c
blobd10e57f5efe0dc0bfae1ad34ddf3091d30789f69
1 // RUN: %llvmgcc -S -o - %s | grep weak
2 // PR2691
4 void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
5 void native_init_IRQ(void) {}