You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
204 B
7 lines
204 B
7 months ago
|
// RUN: %clang_cc1 -triple=i686-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s
|
||
|
// PR2691
|
||
|
|
||
|
// CHECK: weak
|
||
|
void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
|
||
|
void native_init_IRQ(void) {}
|