mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 12:05:48 -04:00

Summary: Switch to FileCheck where possible. Adjust tests so they can be easily regenerated by update scripts. Reviewers: craig.topper, spatel, RKSimon Reviewed By: spatel Subscribers: MatzeB, qcolombet, arphaman, jfb, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D71211
16 lines
431 B
LLVM
16 lines
431 B
LLVM
; 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
|
|
}
|
|
|