blob: 3e9c7909a366eda5227b75e064e57ace7a36291d (
plain)
1
2
3
4
5
6
7
8
9
10
|
; RUN: llc < %s -mcpu=generic -mtriple=x86_64-linux | FileCheck %s
; CHECK: f0:
; CHECK: subq
; CHECK: addq
define x86_fp80 @f0(float %f) nounwind readnone noredzone {
entry:
%0 = fpext float %f to x86_fp80 ; <x86_fp80> [#uses=1]
ret x86_fp80 %0
}
|