From patchwork Tue Dec 28 06:15:26 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jie Zhang X-Patchwork-Id: 76824 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 7C8EAB70D5 for ; Tue, 28 Dec 2010 17:15:44 +1100 (EST) Received: (qmail 23933 invoked by alias); 28 Dec 2010 06:15:43 -0000 Received: (qmail 23923 invoked by uid 22791); 28 Dec 2010 06:15:42 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 28 Dec 2010 06:15:37 +0000 Received: (qmail 3534 invoked from network); 28 Dec 2010 06:15:35 -0000 Received: from unknown (HELO ?192.168.0.101?) (jie@127.0.0.2) by mail.codesourcery.com with ESMTPA; 28 Dec 2010 06:15:35 -0000 Message-ID: <4D19807E.1090107@codesourcery.com> Date: Tue, 28 Dec 2010 14:15:26 +0800 From: Jie Zhang User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101213 Lightning/1.0b2 Icedove/3.1.7 MIME-Version: 1.0 To: gcc-patches@gcc.gnu.org Subject: [commit] Remove useless macro definition 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 Since SLOW_UNALIGNED_ACCESS is not used anymore in builtins.c, I have committed this patch to remove its definition in that file under the obvious rule. Regards, * builtins.c (SLOW_UNALIGNED_ACCESS): Remove. Index: builtins.c =================================================================== --- builtins.c (revision 168292) +++ builtins.c (working copy) @@ -51,9 +51,6 @@ along with GCC; see the file COPYING3. #include "diagnostic-core.h" #include "builtins.h" -#ifndef SLOW_UNALIGNED_ACCESS -#define SLOW_UNALIGNED_ACCESS(MODE, ALIGN) STRICT_ALIGNMENT -#endif #ifndef PAD_VARARGS_DOWN #define PAD_VARARGS_DOWN BYTES_BIG_ENDIAN