1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

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