1 ; RUN: llvm-reduce --abort-on-invalid-reduction --delta-passes=arguments --test FileCheck --test-arg --check-prefixes=CHECK-ALL,CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
2 ; RUN: cat %t | FileCheck --check-prefixes=CHECK-ALL,CHECK-FINAL %s
4 ; CHECK-INTERESTINGNESS: define void @func(
5 ; CHECK-FINAL: define void @func()
6 define void @func(i1 %arg) {
8 ; CHECK-INTERESTINGNESS: call void @foo({{.*}}blockaddress
9 ; CHECK-FINAL: call void @foo(ptr blockaddress(@func, %bb5))
11 call void @foo(ptr blockaddress(@func, %bb5))
20 declare void @foo(ptr)