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