mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 09:21:13 +00:00
727842e9d7
XFAILed 3 arm regressions (will file bugs) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44389 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
302 B
LLVM
14 lines
302 B
LLVM
; Make sure we don't get an assertion failure, even though this is a parse
|
|
; error
|
|
; RUN: not llvm-upgrade < %s > /dev/null |& grep {No arguments passed to a }
|
|
|
|
%ty = type void (int)
|
|
|
|
declare %ty* %foo()
|
|
|
|
void %test() {
|
|
call %ty* %foo( ) ; <%ty*>:0 [#uses=0]
|
|
ret void
|
|
}
|
|
|