repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2008-11-02-WeakAlias.c
blob
63fd4e15eac9ae8f0be8e469591f7530ec29d0f4
1
// RUN: %clang_cc1 -triple=i686-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s
2
// PR2691
3
4
// CHECK: weak
5
void
init_IRQ
(
void
)
__attribute__
((
weak
,
alias
(
"native_init_IRQ"
)));
6
void
native_init_IRQ
(
void
) {}