Cameron Esfahani | d57f9ec | 2010-10-08 19:24:18 +0000 | [diff] [blame] | 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: |
NAKAMURA Takumi | 1850c80 | 2011-02-05 15:11:32 +0000 | [diff] [blame] | 7 | ; CHECK: movl 48(%rsp), %eax |
| 8 | ; CHECK: addl 40(%rsp), %eax |
Cameron Esfahani | d57f9ec | 2010-10-08 19:24:18 +0000 | [diff] [blame] | 9 | %add = add nsw i32 %p6, %p5 |
| 10 | ret i32 %add |
| 11 | } |