mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
fce288fc91
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81293 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
727 B
LLVM
21 lines
727 B
LLVM
; RUN: llc < %s -march=arm -mattr=+v6,+vfp2 | \
|
|
; RUN: grep fcmpes
|
|
|
|
define void @test3(float* %glob, i32 %X) {
|
|
entry:
|
|
%tmp = load float* %glob ; <float> [#uses=1]
|
|
%tmp2 = getelementptr float* %glob, i32 2 ; <float*> [#uses=1]
|
|
%tmp3 = load float* %tmp2 ; <float> [#uses=1]
|
|
%tmp.upgrd.1 = fcmp ogt float %tmp, %tmp3 ; <i1> [#uses=1]
|
|
br i1 %tmp.upgrd.1, label %cond_true, label %UnifiedReturnBlock
|
|
|
|
cond_true: ; preds = %entry
|
|
%tmp.upgrd.2 = tail call i32 (...)* @bar( ) ; <i32> [#uses=0]
|
|
ret void
|
|
|
|
UnifiedReturnBlock: ; preds = %entry
|
|
ret void
|
|
}
|
|
|
|
declare i32 @bar(...)
|