summaryrefslogtreecommitdiff
path: root/test/Assembler/2008-01-11-VarargAttrs.ll
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-01-11 21:46:24 +0000
committerDuncan Sands <baldrick@free.fr>2008-01-11 21:46:24 +0000
commit8bc16f0e0e31061fde5baa4c1691f659043e746e (patch)
tree6d5c7a6d3bdd77692d3b0806871842bc37a9b9e3 /test/Assembler/2008-01-11-VarargAttrs.ll
parenteb824709cbc6810bfc35833833c5b5cb069f6c40 (diff)
downloadllvm-8bc16f0e0e31061fde5baa4c1691f659043e746e.tar.gz
llvm-8bc16f0e0e31061fde5baa4c1691f659043e746e.tar.bz2
llvm-8bc16f0e0e31061fde5baa4c1691f659043e746e.tar.xz
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
Diffstat (limited to 'test/Assembler/2008-01-11-VarargAttrs.ll')
-rw-r--r--test/Assembler/2008-01-11-VarargAttrs.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Assembler/2008-01-11-VarargAttrs.ll b/test/Assembler/2008-01-11-VarargAttrs.ll
index c46b2a563e..c0aedc80b4 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
}