aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 c46b2a5..c0aedc8 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
}