mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
43899915e9
Fix syntax of tests to ensure grep pattern is properly quoted. llvm-svn: 36134
14 lines
291 B
Plaintext
14 lines
291 B
Plaintext
; Make sure we don't get an assertion failure, even though this is a parse
|
|
; error
|
|
; RUN: 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
|
|
}
|
|
|