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