New testcase

llvm-svn: 2304
This commit is contained in:
Chris Lattner 2002-04-18 20:30:58 +00:00
parent ded2679ed0
commit 323c46631a

View File

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