From patchwork Wed Apr 18 15:09:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Uros Bizjak X-Patchwork-Id: 153530 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 8A7BDB6EE6 for ; Thu, 19 Apr 2012 01:10:54 +1000 (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=1335366655; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=AMul2sQ mcyq1iszR73EmvJv8D3U=; b=XI597TWz3u4Vw2SsOainA/4W0RvLv3d4QGozPTq 2Z+JMhl1pwFbAjqaU3gATpVdPCsIUvpe90K8NznHVbp5I25xaUU0SGm4+hyMitUH Xb1jpLo+mTqn62T2g32lUARRre9A+cYu2tlWumoakYwDrq7T2PRraYDcQmnBc/n3 Mkg4= 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:MIME-Version:Received:Received:Date:Message-ID:Subject:From:To:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=mRBqnt/8LUkHu0EgYfl3mZ8VTL6VpwZbE2WeymOcKiivkwzx+70f8qlIfnQWHt NJ+UV8jIusrZau8d0TnbV1U5SzbwPZpOsCW3QvjubiAPztNgqNOYA+Wht/8LTVhZ 970h4dnkloOGX8Jj9ElHbtUxGdazG/lJ7s6VLaItmXI6g=; Received: (qmail 4319 invoked by alias); 18 Apr 2012 15:10:41 -0000 Received: (qmail 4305 invoked by uid 22791); 18 Apr 2012 15:10:39 -0000 X-SWARE-Spam-Status: No, hits=-4.1 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE, TW_ZJ X-Spam-Check-By: sourceware.org Received: from mail-gy0-f175.google.com (HELO mail-gy0-f175.google.com) (209.85.160.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 18 Apr 2012 15:09:43 +0000 Received: by ghbz2 with SMTP id z2so3987000ghb.20 for ; Wed, 18 Apr 2012 08:09:42 -0700 (PDT) MIME-Version: 1.0 Received: by 10.100.244.33 with SMTP id r33mr804787anh.54.1334761782843; Wed, 18 Apr 2012 08:09:42 -0700 (PDT) Received: by 10.146.124.5 with HTTP; Wed, 18 Apr 2012 08:09:42 -0700 (PDT) Date: Wed, 18 Apr 2012 17:09:42 +0200 Message-ID: Subject: [PATCH, alpha]: Fix atomic_ior_* pattern name From: Uros Bizjak To: gcc-patches@gcc.gnu.org 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 Hello! This patch fixes alpha atomic_or vs atomic_ior confusion. 2012-04-18 Uros Bizjak * config/alpha/sync.md (fetchop_name): Change ior attribute to "or". Tested on alphaev68-pc-linux-gnu, committed to mainline and 4.7 branch. Uros. Index: config/alpha/sync.md =================================================================== --- config/alpha/sync.md (revision 186571) +++ config/alpha/sync.md (working copy) @@ -19,7 +19,7 @@ (define_code_iterator FETCHOP [plus minus ior xor and]) (define_code_attr fetchop_name - [(plus "add") (minus "sub") (ior "ior") (xor "xor") (and "and")]) + [(plus "add") (minus "sub") (ior "or") (xor "xor") (and "and")]) (define_code_attr fetchop_pred [(plus "add_operand") (minus "reg_or_8bit_operand") (ior "or_operand") (xor "or_operand") (and "and_operand")])