Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
1d4a8fe156fc65124ea03dde46f9aed74b0a3451
/
.
/
llvm
/
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
)
{}