diff options
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 0d8026e..a76aeb2 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -2438,6 +2438,11 @@ expand_debug_expr (tree exp) return op0; } + case MEM_REF: + /* ??? FIXME. */ + if (!integer_zerop (TREE_OPERAND (exp, 1))) + return NULL; + /* Fallthru. */ case INDIRECT_REF: case ALIGN_INDIRECT_REF: case MISALIGNED_INDIRECT_REF: |