[lit] Add argument check: --timeout must be non-negative integer
[llvm-core.git] / test / Reduce / remove-args.ll
blob8d6130262bf50768773ccbe809f8cd01f111e644
1 ; Test that llvm-reduce can remove uninteresting function arguments from function definitions as well as their calls.
3 ; RUN: rm -rf %t
4 ; RUN: llvm-reduce --test %python --test-arg %p/Inputs/remove-args.py %s -o %t
5 ; RUN: cat %t | FileCheck -implicit-check-not=uninteresting %s
7 ; CHECK: @interesting(i32 %interesting)
8 define void @interesting(i32 %uninteresting1, i32 %interesting, i32 %uninteresting2) {
9 entry:
10   ; CHECK: call void @interesting(i32 0)
11   call void @interesting(i32 -1, i32 0, i32 -1)
12   ret void