From: Duncan Sands Date: Fri, 11 Jan 2008 21:46:24 +0000 (+0000) Subject: Two occurrences on one line count as one... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8bc16f0e0e31061fde5baa4c1691f659043e746e;p=oota-llvm.git 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 --- diff --git a/test/Assembler/2008-01-11-VarargAttrs.ll b/test/Assembler/2008-01-11-VarargAttrs.ll index c46b2a563e7..c0aedc80b4c 100644 --- a/test/Assembler/2008-01-11-VarargAttrs.ll +++ b/test/Assembler/2008-01-11-VarargAttrs.ll @@ -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 }