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
23 lines
685 B
LLVM
23 lines
685 B
LLVM
; RUN: llvm-as < %s | llc -march=arm | \
|
|
; RUN: grep {mov r0, #0} | count 1
|
|
; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | \
|
|
; RUN: grep {flds.*\\\[} | count 1
|
|
; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | \
|
|
; RUN: grep {fsts.*\\\[} | count 1
|
|
|
|
define float @f1(float %a) {
|
|
ret float 0.000000e+00
|
|
}
|
|
|
|
define float @f2(float* %v, float %u) {
|
|
%tmp = load float* %v ; <float> [#uses=1]
|
|
%tmp1 = fadd float %tmp, %u ; <float> [#uses=1]
|
|
ret float %tmp1
|
|
}
|
|
|
|
define void @f3(float %a, float %b, float* %v) {
|
|
%tmp = fadd float %a, %b ; <float> [#uses=1]
|
|
store float %tmp, float* %v
|
|
ret void
|
|
}
|