Taints the non-acquire RMW's store address with the load part
[oota-llvm.git] / test / CodeGen / Mips / mips64sinttofpsf.ll
1 ; RUN: llc -march=mips64 -mcpu=mips64r2 -mattr=+soft-float -O0 < %s | FileCheck %s
2
3
4 define double @foo() #0 {
5 entry:
6   %x = alloca i32, align 4
7   store volatile i32 -32, i32* %x, align 4
8   %0 = load volatile i32, i32* %x, align 4
9   %conv = sitofp i32 %0 to double
10   ret double %conv
11
12 ; CHECK-NOT:        dsll
13 ; CHECK-NOT:        dsrl
14
15 }