llvm-6502/test/CodeGen/X86/alloca-align-rounding.ll

10 lines
194 B
LLVM
Raw Normal View History

; 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
}