aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/Mips/2008-07-07-FPExtend.ll
blob: dcd3adc3c671e365726a840bd1b791b010b7718c (plain)
1
2
3
4
5
6
7
8
; RUN: llc -mtriple=mips -mattr=single-float  < %s | FileCheck %s

define double @dofloat(float %a) nounwind {
entry:
; CHECK: __extendsfdf2
	fpext float %a to double		; <double>:0 [#uses=1]
	ret double %0
}