Files
clang-p2996/llvm/test/CodeGen/XCore/licm-ldwcp.ll
2022-12-19 13:12:27 +01:00

19 lines
476 B
LLVM

; RUN: llc < %s -march=xcore -asm-verbose=0 | FileCheck %s
; MachineLICM should hoist the LDWCP out of the loop.
; CHECK-LABEL: f:
; CHECK-NEXT: ldw [[REG:r[0-9]+]], cp[.LCPI0_0]
; CHECK-NEXT: .LBB0_1:
; CHECK-NEXT: stw [[REG]], r0[0]
; CHECK-NEXT: bu .LBB0_1
define void @f(ptr nocapture %p) noreturn nounwind {
entry:
br label %bb
bb: ; preds = %bb, %entry
store volatile i32 525509670, ptr %p, align 4
br label %bb
}