[llvm-commits] [llvm] r45885 - /llvm/trunk/test/Assembler/2008-01-11-VarargAttrs.ll
Duncan Sands
baldrick at free.fr
Fri Jan 11 13:46:24 PST 2008
Author: baldrick
Date: Fri Jan 11 15:46:24 2008
New Revision: 45885
URL: http://llvm.org/viewvc/llvm-project?rev=45885&view=rev
Log:
Two occurrences on one line count as one...
Modified:
llvm/trunk/test/Assembler/2008-01-11-VarargAttrs.ll
Modified: llvm/trunk/test/Assembler/2008-01-11-VarargAttrs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Assembler/2008-01-11-VarargAttrs.ll?rev=45885&r1=45884&r2=45885&view=diff
==============================================================================
--- llvm/trunk/test/Assembler/2008-01-11-VarargAttrs.ll (original)
+++ llvm/trunk/test/Assembler/2008-01-11-VarargAttrs.ll Fri Jan 11 15:46:24 2008
@@ -1,10 +1,10 @@
-; RUN: llvm-as < %s | llvm-dis | grep byval | count 2
+; RUN: llvm-as < %s | llvm-dis | grep byval
%struct = type { }
declare void @foo(...)
define void @bar() {
- call void (...)* @foo(%struct* byval null, %struct* byval null )
+ call void (...)* @foo(%struct* byval null )
ret void
}
More information about the llvm-commits
mailing list