aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/alloca-align-rounding.ll
blob: 899dbffd4f67cc64b782fc9a0aea70196882c683 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as < %s | llc -march=x86-64 | not grep and

declare void @bar(<2 x i64>* %n)

define void @foo(i32 %h) {
  %p = alloca <2 x i64>, i32 %h
  call void @bar(<2 x i64>* %p)
  ret void
}