forked from OSchip/llvm-project
10 lines
194 B
LLVM
10 lines
194 B
LLVM
|
; 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
|
||
|
}
|