public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Yury Gribov <tetra2005.patches@gmail.com>
To: Segher Boessenkool <segher@kernel.crashing.org>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>,
	seurer@gcc.gnu.org, wschmidt@gcc.gnu.org, 	meissner@gcc.gnu.org,
	marxin <marxin@gcc.gnu.org>
Subject: Re: [PATCHv2][PR target/81535] Fix tests on Power
Date: Fri, 16 Feb 2018 08:56:00 -0000	[thread overview]
Message-ID: <CAKuS3ctvG_00q5vONJZ7qFdoWLzCL=ynpGK2Oiarj=iGa-NUnw@mail.gmail.com> (raw)
In-Reply-To: <CAKuS3cv+AgJ76v5t8cGY=paUC5esKKSQHSmgXAtnRN0=AB+pAg@mail.gmail.com>

On Thu, Feb 15, 2018 at 8:13 PM, Yury Gribov
<tetra2005.patches@gmail.com> wrote:
> Hi all,
>
> This is an updated version of patch for PR 81535.  The patch was last
> discussed in November.  The new version addresses Segher's comments in
> https://gcc.gnu.org/ml/gcc-patches/2017-08/msg00558.html

Forgot to mention: I've added the -fno-reorder-blocks flag to PowerPC
tests because otherwise bbro pass copies call to g() which breaks
number of nops. Roughly
  if (a > 10 && f ())
    ret += rec (a - 1);
  g ();
is converted to
  if (a <= 10) {
  lab:
    g();
  } else {
    if (!f())
      goto lab;
    ret += rec (a - 1);
    g ();
  }

-Y

  reply	other threads:[~2018-02-16  8:56 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-15 20:13 Yury Gribov
2018-02-16  8:56 ` Yury Gribov [this message]
2018-02-16 15:27 ` Segher Boessenkool

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAKuS3ctvG_00q5vONJZ7qFdoWLzCL=ynpGK2Oiarj=iGa-NUnw@mail.gmail.com' \
    --to=tetra2005.patches@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=marxin@gcc.gnu.org \
    --cc=meissner@gcc.gnu.org \
    --cc=segher@kernel.crashing.org \
    --cc=seurer@gcc.gnu.org \
    --cc=wschmidt@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).