mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
ae3a0be92e
integer and floating-point opcodes, introducing FAdd, FSub, and FMul. For now, the AsmParser, BitcodeReader, and IRBuilder all preserve backwards compatability, and the Core LLVM APIs preserve backwards compatibility for IR producers. Most front-ends won't need to change immediately. This implements the first step of the plan outlined here: http://nondot.org/sabre/LLVMNotes/IntegerOverflow.txt git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72897 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
801 B
LLVM
25 lines
801 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -pre-alloc-split -stats |& \
|
|
; RUN: grep {pre-alloc-split} | grep {Number of intervals split} | grep 1
|
|
; XFAIL: *
|
|
|
|
define void @test(double* %P, i32 %cond) nounwind {
|
|
entry:
|
|
%0 = load double* %P, align 8 ; <double> [#uses=1]
|
|
%1 = fadd double %0, 4.000000e+00 ; <double> [#uses=2]
|
|
%2 = icmp eq i32 %cond, 0 ; <i1> [#uses=1]
|
|
br i1 %2, label %bb1, label %bb
|
|
|
|
bb: ; preds = %entry
|
|
%3 = fadd double %1, 4.000000e+00 ; <double> [#uses=1]
|
|
br label %bb1
|
|
|
|
bb1: ; preds = %bb, %entry
|
|
%A.0 = phi double [ %3, %bb ], [ %1, %entry ] ; <double> [#uses=1]
|
|
%4 = fmul double %A.0, 4.000000e+00 ; <double> [#uses=1]
|
|
%5 = tail call i32 (...)* @bar() nounwind ; <i32> [#uses=0]
|
|
store double %4, double* %P, align 8
|
|
ret void
|
|
}
|
|
|
|
declare i32 @bar(...)
|