summaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-reduce/remove-args.ll
blob: 555cca53268107a0a28abad975dcd9c424c7b104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; Test that llvm-reduce can remove uninteresting function arguments from function definitions as well as their calls.
;
; RUN: llvm-reduce -delta-passes=arguments --test %python --test-arg %p/Inputs/remove-args.py %s -o %t
; RUN: cat %t | FileCheck -implicit-check-not=uninteresting %s

; CHECK: @interesting(i32 %interesting)
define void @interesting(i32 %uninteresting1, i32 %interesting, i32 %uninteresting2) {
entry:
  ; CHECK: call void @interesting(i32 0)
  call void @interesting(i32 -1, i32 0, i32 -1)
  ret void
}