diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-15 09:20:37 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-15 09:20:37 +0000 |
commit | 5168aa671fbf9c255fa8bf73e7a96f1d90734af7 (patch) | |
tree | 8f82b92849bc601df797526f63d3765f30450da7 /gcc/gimple.c | |
parent | 135c457936cd617e0cc753bb5776536d0bf5b74c (diff) | |
download | gcc-5168aa671fbf9c255fa8bf73e7a96f1d90734af7.tar.gz |
2012-05-15 Richard Guenther <rguenther@suse.de>
* gimple.c (gimple_set_modified): Move ...
* gimple.h (gimple_set_modified): ... here.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@187503 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimple.c')
-rw-r--r-- | gcc/gimple.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/gimple.c b/gcc/gimple.c index 79da12cde51..4fc836236ff 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: |