mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
6e0f1055bb
llvm-svn: 164975
11 lines
252 B
LLVM
11 lines
252 B
LLVM
; 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
|
|
}
|