2022-08-08 17:02:44 -07:00
|
|
|
; RUN: llvm-reduce -write-tmp-files-as-bitcode --delta-passes=function-bodies,basic-blocks %s -o %t \
|
2021-11-16 12:39:32 +00:00
|
|
|
; RUN: --test %python --test-arg %p/Inputs/llvm-dis-and-filecheck.py --test-arg llvm-dis --test-arg FileCheck --test-arg --check-prefixes=CHECK-ALL,CHECK-INTERESTINGNESS --test-arg %s
|
2022-10-28 18:24:21 -07:00
|
|
|
; RUN: FileCheck --check-prefixes=CHECK-ALL,CHECK-FINAL %s < %t
|
2021-11-16 12:39:32 +00:00
|
|
|
|
|
|
|
; CHECK-INTERESTINGNESS: @callee(
|
|
|
|
; CHECK-FINAL: declare void @callee()
|
|
|
|
define void @callee() {
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-ALL: define void @caller()
|
|
|
|
define void @caller() {
|
|
|
|
entry:
|
|
|
|
; CHECK-ALL: call void @callee()
|
|
|
|
; CHECK-ALL: ret void
|
|
|
|
call void @callee()
|
|
|
|
ret void
|
|
|
|
}
|