It's not necessary to do rounding for alloca operations when the requested
[oota-llvm.git] / test / CodeGen / X86 / alloca-align-rounding.ll
1 ; RUN: llvm-as < %s | llc -march=x86-64 | not grep and
2
3 declare void @bar(<2 x i64>* %n)
4
5 define void @foo(i32 %h) {
6   %p = alloca <2 x i64>, i32 %h
7   call void @bar(<2 x i64>* %p)
8   ret void
9 }