1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/Regression/Assembler/2002-05-02-InvalidForwardRef.ll
Chris Lattner c0d1010e65 New testcase for assembler failure
llvm-svn: 2435
2002-05-02 19:12:21 +00:00

12 lines
168 B
LLVM

; It looks like the assembler is not forward resolving the function declaraion
; correctly.
void "test"()
begin
call void %foo()
ret void
end
declare void "foo"()