mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
5f6f8101d5
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 llvm-svn: 72897
21 lines
1.1 KiB
LLVM
21 lines
1.1 KiB
LLVM
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep xor | grep CPI
|
|
|
|
define void @casin({ double, double }* sret %agg.result, double %z.0, double %z.1) nounwind {
|
|
entry:
|
|
%memtmp = alloca { double, double }, align 8 ; <{ double, double }*> [#uses=3]
|
|
%tmp4 = fsub double -0.000000e+00, %z.1 ; <double> [#uses=1]
|
|
call void @casinh( { double, double }* sret %memtmp, double %tmp4, double %z.0 ) nounwind
|
|
%tmp19 = getelementptr { double, double }* %memtmp, i32 0, i32 0 ; <double*> [#uses=1]
|
|
%tmp20 = load double* %tmp19, align 8 ; <double> [#uses=1]
|
|
%tmp22 = getelementptr { double, double }* %memtmp, i32 0, i32 1 ; <double*> [#uses=1]
|
|
%tmp23 = load double* %tmp22, align 8 ; <double> [#uses=1]
|
|
%tmp32 = fsub double -0.000000e+00, %tmp20 ; <double> [#uses=1]
|
|
%tmp37 = getelementptr { double, double }* %agg.result, i32 0, i32 0 ; <double*> [#uses=1]
|
|
store double %tmp23, double* %tmp37, align 8
|
|
%tmp40 = getelementptr { double, double }* %agg.result, i32 0, i32 1 ; <double*> [#uses=1]
|
|
store double %tmp32, double* %tmp40, align 8
|
|
ret void
|
|
}
|
|
|
|
declare void @casinh({ double, double }* sret , double, double) nounwind
|