mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +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
29 lines
692 B
LLVM
29 lines
692 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis > %t
|
|
; RUN: not grep zext %t
|
|
; RUN: not grep slt %t
|
|
; RUN: grep {icmp ult} %t
|
|
|
|
; Instcombine should convert the zext+slt into a simple ult.
|
|
|
|
define void @foo(double* %p) nounwind {
|
|
entry:
|
|
br label %bb
|
|
|
|
bb:
|
|
%indvar = phi i64 [ 0, %entry ], [ %indvar.next, %bb ]
|
|
%t0 = and i64 %indvar, 65535
|
|
%t1 = getelementptr double* %p, i64 %t0
|
|
%t2 = load double* %t1, align 8
|
|
%t3 = fmul double %t2, 2.2
|
|
store double %t3, double* %t1, align 8
|
|
%i.04 = trunc i64 %indvar to i16
|
|
%t4 = add i16 %i.04, 1
|
|
%t5 = zext i16 %t4 to i32
|
|
%t6 = icmp slt i32 %t5, 500
|
|
%indvar.next = add i64 %indvar, 1
|
|
br i1 %t6, label %bb, label %return
|
|
|
|
return:
|
|
ret void
|
|
}
|