blob: e6a36edfb446c9c3d5974922aa5f85512e3faadd [file] [log] [blame]
; RUN: not llvm-as -disable-output < %s 2>&1 | FileCheck %s
; CHECK: error: multiple definition of local value named 'tmp.1'
define void @test() {
%tmp.1 = add i32 0, 1
br label %return
return:
%tmp.1 = add i32 0, 1
ret void
}