Two occurrences on one line count as one...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45885 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2008-01-11 21:46:24 +00:00
parent eb824709cb
commit 8bc16f0e0e

View File

@ -1,10 +1,10 @@
; RUN: llvm-as < %s | llvm-dis | grep byval | count 2 ; RUN: llvm-as < %s | llvm-dis | grep byval
%struct = type { } %struct = type { }
declare void @foo(...) declare void @foo(...)
define void @bar() { define void @bar() {
call void (...)* @foo(%struct* byval null, %struct* byval null ) call void (...)* @foo(%struct* byval null )
ret void ret void
} }