1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Verifier/SelfReferential.ll

10 lines
129 B
LLVM
Raw Normal View History

2002-04-18 22:30:58 +02:00
; Test that self referential instructions are not allowed
implementation
void "test"()
begin
%A = add int %A, 0
ret void
end