brintos

brintos / llvm-project-archived public Read only

0
0
Text · 453 B · 1b2e227 Raw
21 lines · plain
1; RUN: llc < %s -mcpu=i686 2>&1 | FileCheck %s2; PR266253 4target datalayout = "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128"5target triple = "i386"6 7define float @x0(float %f) #0 {8entry:9  %call = tail call float @sqrtf(float %f) #110  ret float %call11; CHECK-LABEL: x0:12; CHECK: flds13; CHECK-NEXT: fsqrt14; CHECK-NOT: vsqrtss15}16 17declare float @sqrtf(float) #018 19attributes #0 = { nounwind optsize readnone }20attributes #1 = { nounwind optsize readnone }21