Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / RISCV / optnone-store-no-combine.ll
blobf2b1a2aab3a1715a661e5885326163e3a922eb49
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=riscv64 -verify-machineinstrs < %s | FileCheck %s
4 ; This test verifies that a repeated store is not eliminated with optnone (improves debugging).
6 define void @foo(ptr %p) noinline optnone {
7 ; CHECK-LABEL: foo:
8 ; CHECK:       # %bb.0:
9 ; CHECK-NEXT:    li a1, 8
10 ; CHECK-NEXT:    sw a1, 0(a0)
11 ; CHECK-NEXT:    sw a1, 0(a0)
12 ; CHECK-NEXT:    ret
13   store i32 8, ptr %p, align 4
14   store i32 8, ptr %p, align 4
15   ret void