Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
e4915157303b6c61a653c8da1b7017ed089e51f8
/
.
/
test
/
FrontendC
/
2008-11-02-WeakAlias.c
blob: 4bdc5c7bec9354b62adb970ab94e29a5ddb75482 [
file
] [
log
] [
blame
]
Anton Korobeynikov
e491515
2008-11-02 16:46:17 +0000
[
diff
] [
blame^
]
1
// RUN: %llvmgcc -S -emit-llvm -o - %s | grep weak
2
// PR2691
3
4
void
init_IRQ
(
void
)
__attribute__
((
weak
,
alias
(
"native_init_IRQ"
)));
5
void
native_init_IRQ
(
void
)
{}