Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / newvaluestore.ll
blobb3be23362ba005bc4c9f24f6b3ce3fa925439d6e
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
2 ; Check that we generate new value store.
4 @i = global i32 0, align 4
6 define i32 @main(i32 %x, ptr %p) nounwind {
7 entry:
8 ; CHECK: memw(r{{[0-9]+}}+#{{[0-9]+}}) = r{{[0-9]+}}.new
9   %t0 = load i32, ptr @i, align 4
10   store i32 %t0, ptr %p, align 4
11   ret i32 %x