mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 01:11:44 +00:00
02a9d74413
Add a new Intel MCU CPU Lakemont, which doesn't support X87. Differential Revision: http://reviews.llvm.org/D18650 llvm-svn: 265128
10 lines
250 B
LLVM
10 lines
250 B
LLVM
; RUN: llc < %s -march=x86 -mcpu=lakemont | FileCheck %s
|
|
|
|
; Make sure -mcpu=lakemont implies soft floats.
|
|
define float @test(float %a, float %b) nounwind readnone {
|
|
; CHECK-LABEL: test:
|
|
; CHECK: __addsf3
|
|
%add = fadd float %a, %b
|
|
ret float %add
|
|
}
|