blob: b882689923968cc4a156d21b5b9275490457d344 [file] [log] [blame]
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +00001; RUN: llvm-as < %s | llc
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +00003define void @foo() {
4 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005}
6
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +00007define i32 @main() {
8 call void @foo( )
9 ret i32 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010}
Tanya Lattnerf28e0ce2008-02-19 01:41:04 +000011