1 ; 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. 5 define i32 @f6(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6) nounwind readnone optsize { 6 entry: 7 ; CHECK: movl 48(%rsp), %eax 8 ; CHECK: addl 40(%rsp), %eax 9 %add = add nsw i32 %p6, %p5 10 ret i32 %add 11 } 12