mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
fff44aea75
Messages: Converted test case trivial_codegen_tailcall.ll to use FileCheck. Converted test return_constant.ll to use FileCheck instead of grep. Converted test reorder_load.ll to use FileCheck instead of grep. Converted test intervening-inst.ll to use FileCheck instead of grep. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172171 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
154 B
LLVM
12 lines
154 B
LLVM
; RUN: opt < %s -tailcallelim -S | FileCheck %s
|
|
|
|
|
|
declare void @foo()
|
|
|
|
define void @bar() {
|
|
; CHECK: tail call void @foo()
|
|
call void @foo()
|
|
ret void
|
|
}
|
|
|