blob: 1f7b837b32f589b5a281e727ab08b1e6ce72a0a2 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: not llvm-as -f %s -o /dev/null
2
3; Test that self referential instructions are not allowed
4
5implementation
6
7void "test"()
8begin
9 %A = add int %A, 0
10 ret void
11end