• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -mtriple=i686-- -mcpu=lakemont | FileCheck %s
2
3; Make sure -mcpu=lakemont implies soft floats.
4define float @test(float %a, float %b) nounwind readnone {
5; CHECK-LABEL: test:
6; CHECK: __addsf3
7  %add = fadd float %a, %b
8  ret float %add
9}
10