public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
From: Andrew Makhorin <mao@gnu.org>
To: gcc-help@gcc.gnu.org
Subject: how to disable optimization for particular assignment statements?
Date: Thu, 21 Nov 2013 08:22:00 -0000	[thread overview]
Message-ID: <1385018681.2093.3.camel@corvax> (raw)

Hello,

I have a C code like this:

int foo(void)
{     int phase;
      . . .
      phase = 1;
      phase = 2;
      phase = 3;
      . . .
}

In case of -O0 gcc generates machine instructions for every
assignment 'phase = ...'. But in case of -O2 gcc does not generate
instructions for some assigments. Of course, this is correct. However,
is there any way to tell gcc that 'phase' object is inspected by another
thread, so it should not remove such statements?

Thank you,

Andrew Makhorin


             reply	other threads:[~2013-11-21  7:24 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-21  8:22 Andrew Makhorin [this message]
2013-11-21  8:55 ` Marc Glisse
2013-11-21  9:20   ` Marc Glisse
2013-11-23  2:48     ` Ian Lance Taylor

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=1385018681.2093.3.camel@corvax \
    --to=mao@gnu.org \
    --cc=gcc-help@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).