aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2012-05-15 09:20:37 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2012-05-15 09:20:37 +0000
commita02f0c5dfa9246a57970aeefe5c7196a17bf7b1c (patch)
tree8f82b92849bc601df797526f63d3765f30450da7 /gcc/gimple.c
parent094aaeabfdbe5db85c21d072eb1c2175621fb369 (diff)
downloadgcc-a02f0c5dfa9246a57970aeefe5c7196a17bf7b1c.zip
gcc-a02f0c5dfa9246a57970aeefe5c7196a17bf7b1c.tar.gz
gcc-a02f0c5dfa9246a57970aeefe5c7196a17bf7b1c.tar.bz2
gimple.c (gimple_set_modified): Move ...
2012-05-15 Richard Guenther <rguenther@suse.de> * gimple.c (gimple_set_modified): Move ... * gimple.h (gimple_set_modified): ... here. From-SVN: r187503
Diffstat (limited to 'gcc/gimple.c')
-rw-r--r--gcc/gimple.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/gimple.c b/gcc/gimple.c
index 79da12c..4fc8362 100644
--- a/gcc/gimple.c
+++ b/gcc/gimple.c
@@ -2394,17 +2394,6 @@ gimple_copy (gimple stmt)
}
-/* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
- a MODIFIED field. */
-
-void
-gimple_set_modified (gimple s, bool modifiedp)
-{
- if (gimple_has_ops (s))
- s->gsbase.modified = (unsigned) modifiedp;
-}
-
-
/* Return true if statement S has side-effects. We consider a
statement to have side effects if: