summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/fast-cc-merge-stack-adj.ll
blob: b86109bf85e3947395a2b51b081f955918216056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \
; RUN:   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
}