Files
clang-p2996/llvm/test/Regression/Verifier/SelfReferential.ll
Chris Lattner d8cec98cc1 New testcase
llvm-svn: 2304
2002-04-18 20:30:58 +00:00

10 lines
129 B
LLVM

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