New testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2304 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-04-18 20:30:58 +00:00
parent 76d12299b5
commit 1d2535c0b1

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