blob: 1f7b837b32f589b5a281e727ab08b1e6ce72a0a2 [file] [log] [blame]
Tanya Lattner2393a242004-11-06 23:08:26 +00001; RUN: not llvm-as -f %s -o /dev/null
2
Chris Lattner1d2535c2002-04-18 20:30:58 +00003; Test that self referential instructions are not allowed
4
5implementation
6
7void "test"()
8begin
9 %A = add int %A, 0
10 ret void
11end