1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2; RUN: llc < %s -mtriple=i686-- | FileCheck %s --check-prefix=ALL
3; RUN: llc < %s -mtriple=i686-- -mcpu=yonah | FileCheck %s --check-prefix=ALL
4
5declare double @foo()
6
7define double @bar() {
8; ALL-LABEL: bar:
9; ALL:       # %bb.0: # %entry
10; ALL-NEXT:    jmp foo@PLT # TAILCALL
11entry:
12	%tmp5 = tail call double @foo()
13	ret double %tmp5
14}
15
16