diff options
author | Duncan Sands <baldrick@free.fr> | 2008-01-11 21:46:24 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2008-01-11 21:46:24 +0000 |
commit | 8bc16f0e0e31061fde5baa4c1691f659043e746e (patch) | |
tree | 6d5c7a6d3bdd77692d3b0806871842bc37a9b9e3 | |
parent | eb824709cbc6810bfc35833833c5b5cb069f6c40 (diff) | |
download | external_llvm-8bc16f0e0e31061fde5baa4c1691f659043e746e.zip external_llvm-8bc16f0e0e31061fde5baa4c1691f659043e746e.tar.gz external_llvm-8bc16f0e0e31061fde5baa4c1691f659043e746e.tar.bz2 |
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
-rw-r--r-- | test/Assembler/2008-01-11-VarargAttrs.ll | 4 |
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 } |