diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/fp-stack-direct-ret.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fp-stack-direct-ret.ll | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/fp-stack-direct-ret.ll b/llvm/test/CodeGen/X86/fp-stack-direct-ret.ll index b8bd22308c0..6e6eed39b24 100644 --- a/llvm/test/CodeGen/X86/fp-stack-direct-ret.ll +++ b/llvm/test/CodeGen/X86/fp-stack-direct-ret.ll @@ -1,9 +1,13 @@ -; RUN: llc < %s -mtriple=i686-- | not grep fstp -; RUN: llc < %s -mtriple=i686-- -mcpu=yonah | not grep movsd +; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py +; RUN: llc < %s -mtriple=i686-- | FileCheck %s --check-prefixes=ALL,GENERIC +; RUN: llc < %s -mtriple=i686-- -mcpu=yonah | FileCheck %s --check-prefixes=ALL,YONAH declare double @foo() define double @bar() { +; ALL-LABEL: bar: +; ALL: # %bb.0: # %entry +; ALL-NEXT: jmp foo # TAILCALL entry: %tmp5 = tail call double @foo() ret double %tmp5 |