Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Thumb / and_neg.ll
blob791d6305a1565d9f6901ccf3a8e168ef7af12233
1 ; RUN: llc < %s -mtriple=thumbv7-linux-gnueabi -verify-machineinstrs
2 ; Just shouldn't crash, PR28348
4 %C = type { ptr }
6 define void @repro(ptr %this, i32 %a) {
7   %a_align1 = and i32 %a, -4096
8   %a_and = and i32 %a, 4095
9   %a_align2 = or i32 %a_and, 4096
11   call void @use(i32 %a_align1)
13   %addptr = getelementptr inbounds i8, ptr null, i32 %a_align2
14   store ptr %addptr, ptr %this, align 4
16   ret void
19 declare void @use(i32)