From patchwork Tue May 15 08:52:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tristan Gingold X-Patchwork-Id: 159258 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 7B0BBB6FB4 for ; Tue, 15 May 2012 18:52:38 +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=1337676759; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:From:Content-Type:Content-Transfer-Encoding:Subject: Date:Message-Id:To:Mime-Version:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=H4RLoL76Mjw/cYnN6BQZjregUOc=; b=UsLjBjypjyeWeeB 7y8Bk2so2G8bayqlwJjHHSnBF2tfbs/wicy/oJtTLtCucPoLmcWxrG3VGXCXDzp9 fK5ivlNSj6VeQS+aFKzbZFDm84qnjlr7H/55afgnIK7jBc2i3oWr9N1Wdre1hIU2 X+7L68UWkAuwQ6MnalulbvvB6xDY= 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:Received:Received:From:Content-Type:Content-Transfer-Encoding:Subject:Date:Message-Id:To:Mime-Version:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=XZ4MZZKJVFl4W5EVf9tKbjFroJenpWotkS70BCfYoxSyjKvCAc1Lgn8RMRsVzg gsesXaMp8128QQNpEU6pu9T46llnG/WYgUFUQkgnzhgi9LIldcVsqmR73omCSiTo tV2NSvrko7TBkAGlRZEWiiNVXrenq8AJxV8UZXd0FYN2M=; Received: (qmail 27574 invoked by alias); 15 May 2012 08:52:25 -0000 Received: (qmail 27391 invoked by uid 22791); 15 May 2012 08:52:22 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,TW_JL X-Spam-Check-By: sourceware.org Received: from mel.act-europe.fr (HELO mel.act-europe.fr) (194.98.77.210) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 15 May 2012 08:52:09 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 8A8E1290045 for ; Tue, 15 May 2012 10:52:14 +0200 (CEST) Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tFvkp7n4qq2S for ; Tue, 15 May 2012 10:52:14 +0200 (CEST) Received: from ulanbator.act-europe.fr (ulanbator.act-europe.fr [10.10.1.67]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mel.act-europe.fr (Postfix) with ESMTP id 77F2E290008 for ; Tue, 15 May 2012 10:52:14 +0200 (CEST) From: Tristan Gingold Subject: [Patch]: Fix typo in common/config/ia64/ia64-common.c Date: Tue, 15 May 2012 10:52:08 +0200 Message-Id: <7B2CD7D4-4C15-42FE-A3CA-353E79A550FC@adacore.com> To: GCC Patches Mime-Version: 1.0 (Apple Message framework v1278) 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 hi, looks like a typo... Ok for trunk ? Tristan. 2012-05-14 Tristan Gingold * common/config/ia64/ia64-common.c (ia64_except_unwind_info): Fix typo. diff --git a/gcc/common/config/ia64/ia64-common.c b/gcc/common/config/ia64/ia64- index 1168253..79aed6a 100644 --- a/gcc/common/config/ia64/ia64-common.c +++ b/gcc/common/config/ia64/ia64-common.c @@ -71,8 +71,8 @@ enum unwind_info_type ia64_except_unwind_info (struct gcc_options *opts) { /* Honor the --enable-sjlj-exceptions configure switch. */ -#ifdef CONFIG_UNWIND_EXCEPTIONS - if (CONFIG_UNWIND_EXCEPTIONS) +#ifdef CONFIG_SJLJ_EXCEPTIONS + if (CONFIG_SJLJ_EXCEPTIONS) return UI_SJLJ; #endif