From owner-svn-src-projects@FreeBSD.ORG Tue Jun 21 07:52:05 2011 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B03F1065674 for ; Tue, 21 Jun 2011 07:52:05 +0000 (UTC) (envelope-from rdivacky@vlakno.cz) Received: from vlakno.cz (lev.vlakno.cz [46.28.110.116]) by mx1.freebsd.org (Postfix) with ESMTP id F02248FC15 for ; Tue, 21 Jun 2011 07:52:04 +0000 (UTC) Received: by vlakno.cz (Postfix, from userid 1002) id 75F167F38B9; Tue, 21 Jun 2011 09:13:52 +0200 (CEST) Date: Tue, 21 Jun 2011 09:13:52 +0200 From: Roman Divacky To: Marcel Moolenaar Message-ID: <20110621071352.GA44571@freebsd.org> References: <201106210527.p5L5RoKW081314@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201106210527.p5L5RoKW081314@svn.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: svn-src-projects@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r223357 - projects/llvm-ia64/contrib/llvm/lib/Target/IA64 X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jun 2011 07:52:05 -0000 On Tue, Jun 21, 2011 at 05:27:50AM +0000, Marcel Moolenaar wrote: > Author: marcel > Date: Tue Jun 21 05:27:49 2011 > New Revision: 223357 > URL: http://svn.freebsd.org/changeset/base/223357 > > Log: > o Implement IA64TargetLowering::LowerFormalArguments() for just a single > case. > o Implement IA64TargetLowering::LowerReturn() as empty. > o Give a stab at IA64CallingConv.td > > We now reach IA64FrameLowering::emitPrologue() cool! > + > +SDValue > +IA64TargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv, > + bool isVarArg, const SmallVectorImpl &Outs, > + const SmallVectorImpl &OutVals, DebugLoc dl, > + SelectionDAG &DAG) const > +{ > + return Chain; > +} This doesn't look right, you probably want to copy the result(s) into register(s) or something like this. anyway, great to see progress!