summaryrefslogtreecommitdiff
path: root/gcc/df-scan.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/df-scan.c')
-rw-r--r--gcc/df-scan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/df-scan.c b/gcc/df-scan.c
index 6c95c272df1..49d6df8ca15 100644
--- a/gcc/df-scan.c
+++ b/gcc/df-scan.c
@@ -2982,9 +2982,9 @@ df_uses_record (struct df_collection_rec *collection_rec,
case PRE_MODIFY:
case POST_MODIFY:
/* Catch the def of the register being modified. */
- flags |= DF_REF_READ_WRITE | DF_REF_PRE_POST_MODIFY;
df_ref_record (collection_rec, XEXP (x, 0), &XEXP (x, 0), bb, insn,
- DF_REF_REG_DEF, flags);
+ DF_REF_REG_DEF,
+ flags | DF_REF_READ_WRITE | DF_REF_PRE_POST_MODIFY);
/* ... Fall through to handle uses ... */