blob: 899dbffd4f67cc64b782fc9a0aea70196882c683 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-as < %s | llc -march=x86-64 | not grep and
2
3declare void @bar(<2 x i64>* %n)
4
5define void @foo(i32 %h) {
6 %p = alloca <2 x i64>, i32 %h
7 call void @bar(<2 x i64>* %p)
8 ret void
9}