From patchwork Sun Jul 20 11:39:08 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roman Gareev X-Patchwork-Id: 371891 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id D726B140088 for ; Sun, 20 Jul 2014 21:39:24 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:cc:content-type; q=dns; s=default; b=HGPcZe+bNbjY8MTY8dSvfTfkDh0V51adu8o5dFWVgRi 2II0x8Nv4JRlJTCDo72FNFWDZh8Mz7h8BsyUzCzdfeGwx2AmK9G5b0Hi00hqKLnc ZcIq6GVH/GP+JlsyKCpv7gKJZD1qThw2T1ke/WdwJscy02+fiCcx2q1lpC5qSNtg = DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:cc:content-type; s=default; bh=t5zrN0xbJxZOMdlCsabLtmeiOGU=; b=jHFfXxw1XD9VWZoVW ahOHXJ2Ti62wlW5ssqdTa55wZhFHEp8ULyvwxHpPzpjp7WBVBDaolmOls0HZH2hn ftdboKtD7GUwLIJW5N9gz5AN3QMvRS1Pa8zEzXwJOHyASHpVJ3/CmpdL+RJZU3oK 1IpB1j/pAQE5xh6AmwMzTNUgrs= Received: (qmail 9728 invoked by alias); 20 Jul 2014 11:39:17 -0000 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 Received: (qmail 9649 invoked by uid 89); 20 Jul 2014 11:39:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-yk0-f181.google.com Received: from mail-yk0-f181.google.com (HELO mail-yk0-f181.google.com) (209.85.160.181) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sun, 20 Jul 2014 11:39:11 +0000 Received: by mail-yk0-f181.google.com with SMTP id q200so3183027ykb.40 for ; Sun, 20 Jul 2014 04:39:09 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.236.61.6 with SMTP id v6mr4377683yhc.151.1405856349100; Sun, 20 Jul 2014 04:39:09 -0700 (PDT) Received: by 10.170.91.134 with HTTP; Sun, 20 Jul 2014 04:39:08 -0700 (PDT) Date: Sun, 20 Jul 2014 17:39:08 +0600 Message-ID: Subject: [GSoC] A formatting issue. From: Roman Gareev To: Tobias Grosser Cc: Mircea Namolaru , gcc-patches@gcc.gnu.org This patch fixes a formatting issue related to the number of characters in the line. Is it fine for trunk? --- Cheers, Roman Gareev. 2014-07-20 Roman Gareev gcc/ * graphite-isl-ast-to-gimple.c: Fixes a formatting issue related to the number of characters in the line. Index: gcc/graphite-isl-ast-to-gimple.c =================================================================== --- gcc/graphite-isl-ast-to-gimple.c (revision 212863) +++ gcc/graphite-isl-ast-to-gimple.c (working copy) @@ -464,7 +464,8 @@ case isl_ast_op_lt: { // (iterator < ub) => (iterator <= ub - 1) - isl_val *one = isl_val_int_from_si (isl_ast_expr_get_ctx (for_cond), 1); + isl_val *one = + isl_val_int_from_si (isl_ast_expr_get_ctx (for_cond), 1); isl_ast_expr *ub = isl_ast_expr_get_op_arg (for_cond, 1); res = isl_ast_expr_sub (ub, isl_ast_expr_from_val (one)); break;