[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / tools / llvm-reduce / remove-args-fn-passed-through-call.ll
blob1773397865b721b2aca80ce6368005f7f08c42f0
1 ; Test that llvm-reduce can remove uninteresting function arguments from function definitions as well as their calls.
2 ; This test checks that functions with different argument types are handled correctly
4 ; RUN: llvm-reduce --test FileCheck --test-arg --check-prefixes=CHECK-ALL,CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
5 ; RUN: FileCheck --check-prefixes=CHECK-ALL,CHECK-FINAL %s --input-file %t
7 declare void @pass(void (i32, i8*, i64*)*)
9 define void @bar() {
10 entry:
11   ; CHECK-INTERESTINGNESS: call void @pass({{.*}}@interesting
12   ; CHECK-FINAL: call void @pass(void (i32, i8*, i64*)* bitcast (void (i64*)* @interesting to void (i32, i8*, i64*)*))
13   call void @pass(void (i32, i8*, i64*)* @interesting)
14   ret void
17 ; CHECK-ALL: define internal void @interesting
18 ; CHECK-INTERESTINGNESS-SAME: ({{.*}}%interesting{{.*}}) {
19 ; CHECK-FINAL-SAME: (i64* %interesting)
20 define internal void @interesting(i32 %uninteresting1, i8* %uninteresting2, i64* %interesting) {
21 entry:
22   ret void