Mercurial > hg > CbC > CbC_llvm
annotate test/CodeGen/Mips/mips64sinttofpsf.ll @ 83:60c9769439b8 LLVM3.7
LLVM 3.7
author | Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 18 Feb 2015 14:55:36 +0900 |
parents | |
children | afa8332a0e37 |
rev | line source |
---|---|
83 | 1 ; RUN: llc -march=mips64 -mcpu=mips64r2 -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* %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 } |