llvm-6502/test/Verifier/SelfReferential.ll

10 lines
129 B
LLVM
Raw Normal View History

; Test that self referential instructions are not allowed
implementation
void "test"()
begin
%A = add int %A, 0
ret void
end