Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / PartiallyInlineLibCalls / X86 / musttail.ll
blob65dd616b43ea696f15082f2d5d0f6e751241df45
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -S -passes=partially-inline-libcalls -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck %s
4 define double @foo(double %x) {
5 ; CHECK-LABEL: @foo(
6 ; CHECK-NEXT:    [[R:%.*]] = musttail call double @sqrt(double [[X:%.*]])
7 ; CHECK-NEXT:    ret double [[R]]
9   %r = musttail call double @sqrt(double %x)
10   ret double %r
13 declare double @sqrt(double)