Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / storerd-io-over-rr.ll
blob3b67117f0cd34079fb3ff39486505645160f6406
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
2 ; Check for memd(base + #offset), instead of memd(base + reg<<#c).
3 ; CHECK: memd(r{{[0-9]+}}+#
5 define void @fred(i32 %p, i64 %v) #0 {
6   %t0 = add i32 %p, 4
7   %t1 = inttoptr i32 %t0 to ptr
8   store i64 %v, ptr %t1
9   ret void
12 attributes #0 = { nounwind "target-cpu"="hexagonv60" }