summaryrefslogtreecommitdiff
path: root/test/BugPoint/remove_arguments_test.ll
blob: 5a0bd6f00936e004eb26c3d88854afcf808a3ccf (plain)
1
2
3
4
5
6
7
8
9
; RUN: bugpoint %s  -bugpoint-crashcalls

; Test to make sure that arguments are removed from the function if they are unnecessary.

declare int %test2()
int %test(int %A, int %B, float %C) {
	call int %test2()
	ret int %0
}