From eb824709cbc6810bfc35833833c5b5cb069f6c40 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Fri, 11 Jan 2008 21:23:39 +0000 Subject: If there are attributes on the varargs part of a call, don't discard them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45884 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Assembler/2008-01-11-VarargAttrs.ll | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/Assembler/2008-01-11-VarargAttrs.ll (limited to 'test/Assembler/2008-01-11-VarargAttrs.ll') diff --git a/test/Assembler/2008-01-11-VarargAttrs.ll b/test/Assembler/2008-01-11-VarargAttrs.ll new file mode 100644 index 0000000..c46b2a5 --- /dev/null +++ b/test/Assembler/2008-01-11-VarargAttrs.ll @@ -0,0 +1,10 @@ +; RUN: llvm-as < %s | llvm-dis | grep byval | count 2 + + %struct = type { } + +declare void @foo(...) + +define void @bar() { + call void (...)* @foo(%struct* byval null, %struct* byval null ) + ret void +} -- cgit v1.1