mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 08:28:19 +00:00
b03785f0cd
llvm-svn: 51357
14 lines
293 B
LLVM
14 lines
293 B
LLVM
; Make sure we don't get an assertion failure, even though this is a parse
|
|
; error
|
|
; RUN: not llvm-as %s -o /dev/null -f |& grep {No arguments}
|
|
|
|
%ty = type void (i32)
|
|
|
|
declare %ty* @foo()
|
|
|
|
define void @test() {
|
|
call %ty* @foo( ) ; <%ty*>:0 [#uses=0]
|
|
ret void
|
|
}
|
|
|