mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
2b68172fec
A lot of tests under PowerPC are using fast flag, while fast is just alias of 7 fast-math flags. This change makes test points clearer. mc-instrlat.ll and sms-iterator.ll keeps unchanged since they are not testing fast-math behavior. (one for machine combiner crash, one for machine pipeliner bug) Reviewed By: steven.zhang, spatel Differential Revision: https://reviews.llvm.org/D78989
38 lines
1.2 KiB
LLVM
38 lines
1.2 KiB
LLVM
; RUN: llc -verify-machineinstrs < %s | FileCheck %s
|
|
target datalayout = "E-m:e-i64:64-n32:64"
|
|
target triple = "powerpc64-unknown-linux-gnu"
|
|
|
|
define void @LSH_recall_init(float %d_min, float %W) #0 {
|
|
entry:
|
|
br i1 undef, label %for.body.lr.ph, label %for.end
|
|
|
|
; CHECK-LABEL: @LSH_recall_init
|
|
; CHECK: xsmaddadp
|
|
|
|
for.body.lr.ph: ; preds = %entry
|
|
%conv3 = fpext float %W to double
|
|
br label %for.body
|
|
|
|
for.body: ; preds = %for.body, %for.body.lr.ph
|
|
%div = fdiv reassoc arcp float 0.000000e+00, %W
|
|
%add = fadd reassoc float %div, %d_min
|
|
%conv2 = fpext float %add to double
|
|
%0 = tail call double @llvm.sqrt.f64(double %conv2)
|
|
%div4 = fdiv reassoc arcp double %conv3, %0
|
|
%call = tail call signext i32 bitcast (i32 (...)* @p_col_helper to i32 (double)*)(double %div4) #2
|
|
br label %for.body
|
|
|
|
for.end: ; preds = %entry
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone
|
|
declare double @llvm.sqrt.f64(double) #1
|
|
|
|
declare signext i32 @p_col_helper(...) #2
|
|
|
|
attributes #0 = { nounwind "no-infs-fp-math"="true" "no-nans-fp-math"="true" "target-cpu"="pwr7" "unsafe-fp-math"="true" }
|
|
attributes #1 = { nounwind readnone }
|
|
attributes #2 = { nounwind }
|
|
|