brintos

brintos / llvm-project-archived public Read only

0
0
Text · 233 B · e6a36ed Raw
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