diff options
Diffstat (limited to 'gcc/ggc-common.c')
-rw-r--r-- | gcc/ggc-common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/ggc-common.c b/gcc/ggc-common.c index 80de3802fed..53057c8a75b 100644 --- a/gcc/ggc-common.c +++ b/gcc/ggc-common.c @@ -298,6 +298,9 @@ ggc_mark_rtx_children (r) have any right poking our noses in? */ switch (code) { + case MEM: + ggc_mark (MEM_ATTRS (r)); + break; case JUMP_INSN: ggc_mark_rtx (JUMP_LABEL (r)); break; |