llvm-6502/test/CodeGen/Mips/weak.ll
Akira Hatanaka 37d22d92df Define WeakRefDirective.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132098 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-25 23:30:30 +00:00

13 lines
258 B
LLVM

; RUN: llc -march=mips < %s | FileCheck %s
@t = common global i32 (...)* null, align 4
define void @f() nounwind {
entry:
store i32 (...)* @test_weak, i32 (...)** @t, align 4
ret void
}
; CHECK: .weak test_weak
declare extern_weak i32 @test_weak(...)