From owner-freebsd-current@FreeBSD.ORG Tue Feb 19 16:46:35 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id F292CA41; Tue, 19 Feb 2013 16:46:34 +0000 (UTC) (envelope-from davide.italiano@gmail.com) Received: from mail-vc0-f176.google.com (mail-vc0-f176.google.com [209.85.220.176]) by mx1.freebsd.org (Postfix) with ESMTP id 93082347; Tue, 19 Feb 2013 16:46:34 +0000 (UTC) Received: by mail-vc0-f176.google.com with SMTP id fk10so4396968vcb.35 for ; Tue, 19 Feb 2013 08:46:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=DOO6/FnXmpwgDvYLqlPMhBd8B8xeGwQ6cqga/cYkozc=; b=Thg2ND4CG5teVl7F8a9/kBpy+h6S/MIAUa3XpHfOB7/qj1o2muAjvzT9TJ/TIp7K41 irzPAi3tqLofDoZ2XlnYM5U126tAvaBbZmKT/9hBTdJm775rVCPGhHlqGeyR3aSB4nJv WDtnNPNE6JU3CKJdsTSjLQjRwoU0mHyuw65s2xTbQgABH46UVzbDNbsopo7Xg9vNKFcL wOBr4E6ppVeybhyEomqUVejd3aVEoYIvfUzKmr1w6o4/6smEA+PIVSrQyiqIZoxk13tI GadJqPkiLeMOOTLXM6QAtEmg7SmrTpiTcACcjYJXTnLi5yAI9IGv98R9iDWFmRH6vM9n 43hQ== MIME-Version: 1.0 X-Received: by 10.52.88.237 with SMTP id bj13mr18758606vdb.75.1361292393764; Tue, 19 Feb 2013 08:46:33 -0800 (PST) Sender: davide.italiano@gmail.com Received: by 10.220.114.134 with HTTP; Tue, 19 Feb 2013 08:46:33 -0800 (PST) In-Reply-To: References: Date: Tue, 19 Feb 2013 17:46:33 +0100 X-Google-Sender-Auth: qvLcaqB-1m1_W6kcPog1_URRib0 Message-ID: Subject: Re: r246916 probably broke amd64 build From: Davide Italiano To: "Simon L. B. Nielsen" Content-Type: text/plain; charset=ISO-8859-1 Cc: mav@freebsd.org, freebsd-current , des@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2013 16:46:35 -0000 On Tue, Feb 19, 2013 at 3:22 PM, Simon L. B. Nielsen wrote: > Hey, > > I think r246916 broke the build. I get the following when building amd64 kernel: > > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -g > -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes > -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef > -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs > -fdiagnostics-show-option -nostdinc -I. -I/usr/src/sys > -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS > -include opt_global.h -fno-common -finline-limit=8000 --param > inline-unit-growth=100 --param large-function-growth=1000 > -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx > -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding > -fstack-protector -Werror /usr/src/sys/x86/isa/clock.c > cc1: warnings being treated as errors > /usr/src/sys/x86/isa/clock.c: In function 'set_i8254_freq': > /usr/src/sys/x86/isa/clock.c:409: warning: 'new_mode' may be used > uninitialized in this function > > Could you have a look? Thanks. > > -- > Simon L. B. Nielsen > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" It's fixed (r247000). Unfortunately tinderbox didn't catch this bug because it's triggered only when gcc is used to build kernel. Thanks, Davide