blob: 041b0d94c413820dfa083a747d05ae220f8f6bb6 [file] [log] [blame]
Chris Lattnerdf986172009-01-02 07:01:27 +00001; RUN: not llvm-as < %s |& grep {multiple definition}
Chris Lattneredaa6742003-11-25 03:58:49 +00002
Reid Spencer90b707f2007-04-16 14:46:17 +00003define void @test() {
4 %tmp.1 = add i32 0, 1
Chris Lattneredaa6742003-11-25 03:58:49 +00005 br label %return
6return:
Reid Spencer90b707f2007-04-16 14:46:17 +00007 %tmp.1 = add i32 0, 1
Chris Lattneredaa6742003-11-25 03:58:49 +00008 ret void
9}
10