blob: 8bffb4c10e7fc5d0c8f5dede0a148f94a8ff762c [file] [log] [blame]
Tanya Lattner9bc243b2008-03-01 07:38:40 +00001; RUN: llvm-as < %s | llvm-dis > %t1.ll
Tanya Lattner3f7706b2004-11-07 06:08:43 +00002; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3; RUN: diff %t1.ll %t2.ll
4
Tanya Lattner9bc243b2008-03-01 07:38:40 +00005declare void @bar()
Chris Lattner9bbcf092004-10-16 18:24:11 +00006
Tanya Lattner9bc243b2008-03-01 07:38:40 +00007define i32 @foo() {
8 unreachable
Chris Lattner9bbcf092004-10-16 18:24:11 +00009}
10
Tanya Lattner9bc243b2008-03-01 07:38:40 +000011define double @xyz() {
12 call void @bar( )
13 unreachable
Chris Lattner9bbcf092004-10-16 18:24:11 +000014}
Tanya Lattner9bc243b2008-03-01 07:38:40 +000015