Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Mips / ctlz.ll
blobefb23f55c2cf2b40f60cf0ba56fb847691593f9d
1 ; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mcpu=mips32 -mattr=+mips16 -relocation-model=static < %s | FileCheck %s -check-prefix=static
3 @x = global i32 28912, align 4
4 @y = common global i32 0, align 4
7 ; Function Attrs: nounwind
8 define i32 @main() #0 {
9 entry:
10   %retval = alloca i32, align 4
11   store i32 0, ptr %retval
12   %0 = load i32, ptr @x, align 4
13   %1 = call i32 @llvm.ctlz.i32(i32 %0, i1 true)
14   store i32 %1, ptr @y, align 4
15   ret i32 0
18 ; static: .end main
20 ; Function Attrs: nounwind readnone
21 declare i32 @llvm.ctlz.i32(i32, i1) #1
25 attributes #0 = { nounwind "less-precise-fpmad"="false" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="true" }
26 attributes #1 = { nounwind readnone }