You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
312 B
13 lines
312 B
; RUN: llc -march=mips -mattr=+single-float < %s
|
|
|
|
define void @f0() nounwind {
|
|
entry:
|
|
%b = alloca i32, align 4
|
|
%a = alloca float, align 4
|
|
store volatile i32 1, i32* %b, align 4
|
|
%0 = load volatile i32, i32* %b, align 4
|
|
%conv = uitofp i32 %0 to float
|
|
store float %conv, float* %a, align 4
|
|
ret void
|
|
}
|