12 lines · plain
1; RUN: not llvm-as -disable-output < %s 2>&1 | FileCheck %s2 3; CHECK: error: multiple definition of local value named 'tmp.1'4define void @test() {5 %tmp.1 = add i32 0, 16 br label %return7return:8 %tmp.1 = add i32 0, 19 ret void10}11 12