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.
16 lines
338 B
16 lines
338 B
; RUN: llc -march=mips64 -mcpu=mips64r2 -mattr=+soft-float -O0 < %s | FileCheck %s
|
|
|
|
|
|
define double @foo() #0 {
|
|
entry:
|
|
%x = alloca i32, align 4
|
|
store volatile i32 -32, i32* %x, align 4
|
|
%0 = load volatile i32, i32* %x, align 4
|
|
%conv = sitofp i32 %0 to double
|
|
ret double %conv
|
|
|
|
; CHECK-NOT: dsll
|
|
; CHECK-NOT: dsrl
|
|
|
|
}
|