1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Verifier/SelfReferential.ll
Chris Lattner 323c46631a 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