mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
8a6af7933c
llvm-svn: 145716
16 lines
245 B
LLVM
16 lines
245 B
LLVM
; RUN: llc -march=mips < %s | FileCheck %s
|
|
|
|
define float @A(i32 %u) nounwind {
|
|
entry:
|
|
; CHECK: mtc1
|
|
bitcast i32 %u to float
|
|
ret float %0
|
|
}
|
|
|
|
define i32 @B(float %u) nounwind {
|
|
entry:
|
|
; CHECK: mfc1
|
|
bitcast float %u to i32
|
|
ret i32 %0
|
|
}
|