aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/fast-cc-merge-stack-adj.ll
blob: 375d60c8d157f98bd2b9474f40b437ac9d0d2893 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | grep 'add ESP, 8'

target triple = "i686-pc-linux-gnu"

declare x86_fastcallcc void %func(int *%X, long %Y)

x86_fastcallcc void %caller(int, long) {
	%X = alloca int
	call x86_fastcallcc void %func(int* %X, long 0)   ;; not a tail call
	ret void
}