aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/X86/alloca-align-rounding-32.ll
blob: fdc62b37c629eb5ce9df3d16314f40e2a1519c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc < %s -mtriple=i686-apple-darwin | FileCheck %s

declare void @bar(ptr %n)

define void @foo(i32 %h) {
  %p = alloca <2 x i64>, i32 %h
  call void @bar(ptr %p)
  ret void
; CHECK: foo
; CHECK-NOT: andl $-32, %eax
}

define void @foo2(i32 %h) {
  %p = alloca <2 x i64>, i32 %h, align 32
  call void @bar(ptr %p)
  ret void
; CHECK: foo2
; CHECK: andl $-32, %esp
; CHECK: andl $-32, %e{{..}}
}