From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Zijlstra Subject: Re: [PATCH 2/2] math128, x86_64: Implement {mult,add}_u128 in 64bit asm Date: Wed, 25 Apr 2012 20:10:39 +0200 Message-ID: <1335377439.28150.272.camel@twins> References: <20120425111552.665217867@chello.nl> <20120425112244.953956269@chello.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Return-path: Received: from casper.infradead.org ([85.118.1.10]:40500 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754243Ab2DYSKy convert rfc822-to-8bit (ORCPT ); Wed, 25 Apr 2012 14:10:54 -0400 In-Reply-To: Sender: linux-arch-owner@vger.kernel.org List-ID: To: Andy Lutomirski Cc: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, Linus Torvalds , Andrew Morton , Juri Lelli , Ingo Molnar , Thomas Gleixner , "H. Peter Anvin" On Wed, 2012-04-25 at 11:02 -0700, Andy Lutomirski wrote: > > > +static inline mul_u64_u64(u64 a, u64 b) > > I think you're missing a return type and a 't'. argh, that's what you get for not actually compiling with an old enough gcc :/ Fixed, thanks!