Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
cad129bcc0a23d1acfb6560f12ff1066c7b42ba0
/
.
/
test
/
FrontendC
/
2008-11-02-WeakAlias.c
blob: d10e57f5efe0dc0bfae1ad34ddf3091d30789f69 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S -o - %s | grep weak
// PR2691
void
init_IRQ
(
void
)
__attribute__
((
weak
,
alias
(
"native_init_IRQ"
)));
void
native_init_IRQ
(
void
)
{}