view test/Assembler/2008-01-11-VarargAttrs.ll @ 107:a03ddd01be7e

resolve warnings
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Sun, 31 Jan 2016 17:34:49 +0900
parents afa8332a0e37
children
line wrap: on
line source

; RUN: llvm-as < %s | llvm-dis | grep byval
; RUN: verify-uselistorder %s

	%struct = type {  }

declare void @foo(...)

define void @bar() {
	call void (...) @foo(%struct* byval null )
	ret void
}