mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 18:31:23 +00:00
5adc646380
by non-CMP expressions. The executable test case (129821) would test this as well, if we had an "-O0 -disable-arm-fast-isel" LLVM-GCC tester. Alas, the ARM assembly would be very difficult to check with FileCheck. The thumb2-cbnz.ll test is affected; it generates larger code (tst.w vs. cmp #0), but I believe the new version is correct. rdar://problem/9298790 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131261 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
999 B
LLVM
35 lines
999 B
LLVM
; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mcpu=cortex-a8 | FileCheck %s
|
|
; rdar://7354379
|
|
|
|
declare double @floor(double) nounwind readnone
|
|
|
|
define void @t(i1 %a, double %b) {
|
|
entry:
|
|
br i1 %a, label %bb3, label %bb1
|
|
|
|
bb1: ; preds = %entry
|
|
unreachable
|
|
|
|
bb3: ; preds = %entry
|
|
br i1 %a, label %bb7, label %bb5
|
|
|
|
bb5: ; preds = %bb3
|
|
unreachable
|
|
|
|
bb7: ; preds = %bb3
|
|
br i1 %a, label %bb11, label %bb9
|
|
|
|
bb9: ; preds = %bb7
|
|
; CHECK: tst.w r0, #1
|
|
; CHECK: tst.w r0, #1
|
|
; CHECK: tst.w r0, #1
|
|
; CHECK: bne
|
|
%0 = tail call double @floor(double %b) nounwind readnone ; <double> [#uses=0]
|
|
br label %bb11
|
|
|
|
bb11: ; preds = %bb9, %bb7
|
|
%1 = getelementptr i32* undef, i32 0
|
|
store i32 0, i32* %1
|
|
ret void
|
|
}
|