From patchwork Thu Apr 7 06:15:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurynas Biveinis X-Patchwork-Id: 90135 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 CA237B6F14 for ; Thu, 7 Apr 2011 16:16:24 +1000 (EST) Received: (qmail 12036 invoked by alias); 7 Apr 2011 06:16:22 -0000 Received: (qmail 12024 invoked by uid 22791); 7 Apr 2011 06:16:20 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Received: from mail-ww0-f51.google.com (HELO mail-ww0-f51.google.com) (74.125.82.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 07 Apr 2011 06:16:14 +0000 Received: by wwf26 with SMTP id 26so2635068wwf.8 for ; Wed, 06 Apr 2011 23:16:13 -0700 (PDT) Received: by 10.227.182.129 with SMTP id cc1mr477688wbb.10.1302156973291; Wed, 06 Apr 2011 23:16:13 -0700 (PDT) Received: from [192.168.0.6] (cable-236-212.cgates.lt [79.133.236.212]) by mx.google.com with ESMTPS id u9sm811468wbg.51.2011.04.06.23.16.10 (version=SSLv3 cipher=OTHER); Wed, 06 Apr 2011 23:16:12 -0700 (PDT) Message-ID: <4D9D569C.2060201@gmail.com> Date: Thu, 07 Apr 2011 09:15:56 +0300 From: Laurynas Biveinis User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.14) Gecko/20110223 Thunderbird/3.1.8 MIME-Version: 1.0 To: gcc-patches@gcc.gnu.org Subject: [gc-improv] Missing prototype in the last patch X-IsSubscribed: yes 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 Committed to gc-improv. 2011-04-07 Laurynas Biveinis * rtl.h (gen_rtx_CONST): New. Index: rtl.h =================================================================== --- rtl.h (revision 171651) +++ rtl.h (working copy) @@ -2188,6 +2188,7 @@ generation functions included above do the raw handling. If you add to this list, modify special_rtx in gengenrtl.c as well. */ +extern rtx gen_rtx_CONST (enum machine_mode, rtx); extern rtx gen_rtx_CONST_INT (enum machine_mode, HOST_WIDE_INT); extern rtx gen_rtx_CONST_VECTOR (enum machine_mode, rtvec); extern rtx gen_raw_REG (enum machine_mode, int);