Don't analyze block if it's not considered for ifcvt anymore.
[llvm/stm8.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) {}