mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-25 00:35:30 +00:00
Batch 2 of Mips CodeGen tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54507 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6d523c0fe3
commit
e5813b7aa8
11
test/CodeGen/Mips/2008-07-06-fadd64.ll
Normal file
11
test/CodeGen/Mips/2008-07-06-fadd64.ll
Normal file
@ -0,0 +1,11 @@
|
||||
; RUN: llvm-as < %s | llc -enable-legalize-types -march=mips | \
|
||||
; RUN: grep __adddf3
|
||||
|
||||
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
|
||||
target triple = "mipsallegrexel-psp-elf"
|
||||
|
||||
define double @dofloat(double %a, double %b) nounwind {
|
||||
entry:
|
||||
add double %a, %b ; <double>:0 [#uses=1]
|
||||
ret double %0
|
||||
}
|
11
test/CodeGen/Mips/2008-07-07-FPExtend.ll
Normal file
11
test/CodeGen/Mips/2008-07-07-FPExtend.ll
Normal file
@ -0,0 +1,11 @@
|
||||
; RUN: llvm-as < %s | llc -enable-legalize-types -march=mips | \
|
||||
; RUN: grep __extendsfdf2
|
||||
|
||||
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
|
||||
target triple = "mipsallegrexel-psp-elf"
|
||||
|
||||
define double @dofloat(float %a) nounwind {
|
||||
entry:
|
||||
fpext float %a to double ; <double>:0 [#uses=1]
|
||||
ret double %0
|
||||
}
|
17
test/CodeGen/Mips/2008-07-07-Float2Int.ll
Normal file
17
test/CodeGen/Mips/2008-07-07-Float2Int.ll
Normal file
@ -0,0 +1,17 @@
|
||||
; RUN: llvm-as < %s | llc -enable-legalize-types -march=mips | \
|
||||
; RUN: grep trunc.w.s | count 3
|
||||
|
||||
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
|
||||
target triple = "mipsallegrexel-psp-elf"
|
||||
|
||||
define i32 @fptoint(float %a) nounwind {
|
||||
entry:
|
||||
fptosi float %a to i32 ; <i32>:0 [#uses=1]
|
||||
ret i32 %0
|
||||
}
|
||||
|
||||
define i32 @fptouint(float %a) nounwind {
|
||||
entry:
|
||||
fptoui float %a to i32 ; <i32>:0 [#uses=1]
|
||||
ret i32 %0
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user