Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Mips / weak.ll
blobfdc0a1d8854134f6c9cfd4067877d24e756a31f0
1 ; RUN: llc -march=mips < %s | FileCheck %s
3 @t = common global ptr null, align 4
5 define void @f() nounwind {
6 entry:
7   store ptr @test_weak, ptr @t, align 4
8   ret void
11 ; CHECK: .weak test_weak
12 declare extern_weak i32 @test_weak(...)