repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git]
/
test
/
CodeGen
/
X86
/
vec_uint_to_fp.ll
blob
39e7d715c5bb77ac05d64d1a392a4d98288232d0
1
; RUN: llc < %s -march=x86 -mcpu=sandybridge | FileCheck %s
2
3
; Test that we are not lowering uinttofp to scalars
4
define <4 x float> @test1(<4 x i32> %A) nounwind {
5
; CHECK: test1:
6
; CHECK-NOT: cvtsd2ss
7
; CHECK: ret
8
%C = uitofp <4 x i32> %A to <4 x float>
9
ret <4 x float> %C
10
}
11