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
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
Mips
/
weak.ll
blob
09dd2a4ebbf71f80bcbd6bd279416f3fa8571dda
1
; RUN: llc -march=mips < %s | FileCheck %s
2
3
@t = common global i32 (...)* null, align 4
4
5
define void @f() nounwind {
6
entry:
7
store i32 (...)* @test_weak, i32 (...)** @t, align 4
8
ret void
9
}
10
11
; CHECK: .weak test_weak
12
declare extern_weak i32 @test_weak(...)