1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-20 12:31:40 +00:00
llvm-6502/test/Verifier/SelfReferential.ll
Chris Lattner 1d2535c0b1 New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2304 91177308-0d34-0410-b5e6-96231b3b80d8
2002-04-18 20:30:58 +00:00

10 lines
129 B
LLVM

; Test that self referential instructions are not allowed
implementation
void "test"()
begin
%A = add int %A, 0
ret void
end