blob: de8372cbc4968257e259065823b098e03a43131e [file] [log] [blame]
; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc | grep 'add %ESP, 8'
target triple = "i686-pc-linux-gnu"
declare fastcc void %func(int *%X, long %Y)
fastcc void %caller(int, long) {
%X = alloca int
call fastcc void %func(int* %X, long 0) ;; not a tail call
ret void
}