diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-30 09:08:59 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-30 09:08:59 +0000 |
commit | 8e174389f26bfc4e281c74b643e2765171822a12 (patch) | |
tree | 0395bbbdc3a18687d7a763f132606fdc576f743f /gcc/ipa-pure-const.c | |
parent | 4f834b088e9fcd66b5042f03cf7e90ce4938d1db (diff) | |
download | gcc-8e174389f26bfc4e281c74b643e2765171822a12.tar.gz |
2012-01-30 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 183694 using svnmerge
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@183695 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-pure-const.c')
-rw-r--r-- | gcc/ipa-pure-const.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ipa-pure-const.c b/gcc/ipa-pure-const.c index 82e24cf5a01..e8b21f9fc6b 100644 --- a/gcc/ipa-pure-const.c +++ b/gcc/ipa-pure-const.c @@ -652,7 +652,8 @@ check_stmt (gimple_stmt_iterator *gsip, funct_state local, bool ipa) print_gimple_stmt (dump_file, stmt, 0, 0); } - if (gimple_has_volatile_ops (stmt)) + if (gimple_has_volatile_ops (stmt) + && !gimple_clobber_p (stmt)) { local->pure_const_state = IPA_NEITHER; if (dump_file) |