mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
9757e4f9f3
Update code generator to use this attribute and remove DisableRedZone target option. Update llc to set this attribute when -disable-red-zone command line option is used. llvm-svn: 72894
10 lines
249 B
LLVM
10 lines
249 B
LLVM
; RUN: llvm-as < %s | llc -march=x86-64 > %t
|
|
; RUN: grep subq %t | count 1
|
|
; RUN: grep addq %t | count 1
|
|
|
|
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
|
|
}
|