Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame^] | 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 | } |