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 }