[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / InstCombine / fabs-libcall.ll
blob609529ed3a1b2057aeb6cade4e1937984c2f51eb
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -S -mtriple=i686-apple-macosx -instcombine %s | FileCheck %s
4 declare x86_fp80 @fabsl(x86_fp80)
6 define x86_fp80 @replace_fabs_call_f80(x86_fp80 %x) {
7 ; CHECK-LABEL: @replace_fabs_call_f80(
8 ; CHECK-NEXT:    [[FABSL:%.*]] = call x86_fp80 @llvm.fabs.f80(x86_fp80 [[X:%.*]])
9 ; CHECK-NEXT:    ret x86_fp80 [[FABSL]]
11   %fabsl = tail call x86_fp80 @fabsl(x86_fp80 %x)
12   ret x86_fp80 %fabsl
15 define x86_fp80 @fmf_replace_fabs_call_f80(x86_fp80 %x) {
16 ; CHECK-LABEL: @fmf_replace_fabs_call_f80(
17 ; CHECK-NEXT:    [[FABSL:%.*]] = call nnan x86_fp80 @llvm.fabs.f80(x86_fp80 [[X:%.*]])
18 ; CHECK-NEXT:    ret x86_fp80 [[FABSL]]
20   %fabsl = tail call nnan x86_fp80 @fabsl(x86_fp80 %x)
21   ret x86_fp80 %fabsl