From patchwork Wed Dec 19 14:32:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Biener X-Patchwork-Id: 207365 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 285ED2C008C for ; Thu, 20 Dec 2012 01:34:30 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1356532471; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Date: From:To:Subject:Message-ID:User-Agent:MIME-Version:Content-Type: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=hyDiBKMCpxatQnqn3kAj s0hmCJA=; b=SujRXEHwanytKi/mowBudrT2oXdUsjRsPaYCTrqizjdSVb9pTL3F 3ylakVW0OvZenVPYhZbHDAINK75uz+wl3KM2RTXr/GaBiaCkkIfXF/4jpr9FDQCA 0k4/wqI/cI/IkxVOi4VdGe0SZ7fZdBPBWhDtnk7wlR3PhsS67JEKTcg= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Date:From:To:Subject:Message-ID:User-Agent:MIME-Version:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=W//ZyZcivZPJxikVdd7C8CIUijDk7LbJqQKxlkfbTnas/bEZR7SSA2yXRLt6wa Q9f7wJh9+IPo8cv7+xmHL4/OzsTRcG7R2+SOVjGygbvRX34eJ3dWTKE4J2A/lL8l S0yzt539wT2zZ1tMpUw0LX0uCeuF9YjfGMRLSC4I5mNaQ=; Received: (qmail 10542 invoked by alias); 19 Dec 2012 14:34:22 -0000 Received: (qmail 10369 invoked by uid 22791); 19 Dec 2012 14:34:21 -0000 X-SWARE-Spam-Status: No, hits=-5.4 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 19 Dec 2012 14:33:48 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id B8413A51CB for ; Wed, 19 Dec 2012 15:33:47 +0100 (CET) Date: Wed, 19 Dec 2012 15:32:39 +0100 (CET) From: Richard Biener To: gcc-patches@gcc.gnu.org Subject: [PATCH] Unbreak bootstrap Message-ID: User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org I'll check in the following once it survived stage1. Richard. 2012-12-19 Richard Biener * targhooks.h (default_canonicalize_comparison): Fix prototype. * targhooks.c (default_canonicalize_comparison): Define. Index: gcc/targhooks.h =================================================================== --- gcc/targhooks.h (revision 194609) +++ gcc/targhooks.h (working copy) @@ -179,7 +179,7 @@ extern unsigned char default_class_max_n extern enum unwind_info_type default_debug_unwind_info (void); -extern bool default_canonicalize_comparison (int *, rtx *, rtx *, bool); +extern void default_canonicalize_comparison (int *, rtx *, rtx *, bool); extern int default_label_align_after_barrier_max_skip (rtx); extern int default_loop_align_max_skip (rtx); Index: gcc/targhooks.c =================================================================== --- gcc/targhooks.c (revision 194609) +++ gcc/targhooks.c (working copy) @@ -1540,4 +1540,11 @@ default_member_type_forces_blk (const_tr return false; } +/* Default version of canonicalize_comparison. */ + +void +default_canonicalize_comparison (int *, rtx *, rtx *, bool) +{ +} + #include "gt-targhooks.h"