1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/CodeGen/X86/2011-02-27-Fpextend.ll
Duncan Sands 0f78cf8a37 Windows codegen also dies on this, so restrict to the platform it was
actually tested on.

llvm-svn: 126652
2011-02-28 14:22:08 +00:00

8 lines
195 B
LLVM

; RUN: llc -mtriple=x86_64-pc-linux < %s
; PR9309
define <4 x double> @f_fu(<4 x float>) nounwind {
%float2double.i = fpext <4 x float> %0 to <4 x double>
ret <4 x double> %float2double.i
}