blob: 4bdc5c7bec9354b62adb970ab94e29a5ddb75482 [file] [log] [blame]
Anton Korobeynikove4915152008-11-02 16:46:17 +00001// RUN: %llvmgcc -S -emit-llvm -o - %s | grep weak
2// PR2691
3
4void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
5void native_init_IRQ(void) {}