blob: e402d61aebfc3b30b55f03fcf06d54164cabff68 [file] [log] [blame]
Chandler Carruth4177e6f2012-07-02 12:47:22 +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