Rename llvm-gcc4 to llvm-gcc.
[llvm-complete.git] / test / Verifier / SelfReferential.ll
blob1f7b837b32f589b5a281e727ab08b1e6ce72a0a2
1 ; RUN: not llvm-as -f %s -o /dev/null
3 ; Test that self referential instructions are not allowed
5 implementation
7 void "test"()
8 begin
9         %A = add int %A, 0
10         ret void
11 end