Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

19 lines
478 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(i32* nocapture %p) noreturn nounwind {
entry:
br label %bb
bb: ; preds = %bb, %entry
store volatile i32 525509670, i32* %p, align 4
br label %bb
}