[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / byval-callee-cleanup.ll
blob8e059d4334468d562f02c184d780f8a64023f782
1 ; RUN: llc < %s -mtriple=i686-win32 | FileCheck %s
3 ; Previously we would forget to align to stack slot alignment after placing a
4 ; byval argument.  Subsequent arguments would align themselves, but if it was
5 ; the last argument, the argument size would not be a multiple of stack slot
6 ; size. This resulted in retl $6 in callee-cleanup functions, as well as subtle
7 ; varargs bugs.
9 %struct.Six = type { [6 x i8] }
11 define x86_stdcallcc void @f(%struct.Six* byval %a) {
12   ret void
14 ; CHECK-LABEL: _f@8:
15 ; CHECK: retl $8
17 define x86_thiscallcc void @g(i8* %this, %struct.Six* byval %a) {
18   ret void
20 ; CHECK-LABEL: _g:
21 ; CHECK: retl $8
23 define x86_fastcallcc void @h(i32 inreg %x, i32 inreg %y, %struct.Six* byval %a) {
24   ret void
26 ; CHECK-LABEL: @h@16:
27 ; CHECK: retl $8