blob: f9d4bf9c3094f5e076f829633abe49c4c06bc455 [file] [log] [blame]
Cameron Esfahanid57f9ec2010-10-08 19:24:18 +00001; RUN: llc < %s -mtriple=x86_64-pc-win32 | FileCheck %s
2
3; Verify that the 5th and 6th parameters are coming from the correct location
4; on the stack.
5define i32 @f6(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6) nounwind readnone optsize {
6entry:
NAKAMURA Takumi1850c802011-02-05 15:11:32 +00007; CHECK: movl 48(%rsp), %eax
8; CHECK: addl 40(%rsp), %eax
Cameron Esfahanid57f9ec2010-10-08 19:24:18 +00009 %add = add nsw i32 %p6, %p5
10 ret i32 %add
11}