mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
3fc42fd77c
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164975 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|