OSDN Git Service

* flow.c (notice_stack_pointer_modification_1): Notice midifications
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Dec 2000 18:52:49 +0000 (18:52 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Dec 2000 18:52:49 +0000 (18:52 +0000)
using PRE_MODIFY and POST_MODIFY.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38226 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/flow.c

index 683cf71..a53a1c0 100644 (file)
@@ -1,3 +1,8 @@
+Wed Dec 13 19:48:04 MET 2000  Jan hubicka  <jh@suse.cz>
+
+       * flow.c (notice_stack_pointer_modification_1): Notice midifications
+       using PRE_MODIFY and POST_MODIFY.
+
 Wed Dec 13 17:25:32 MET 2000  Jan Hubicka  <jh@suse.cz>
 
        * genoutput.c (process_template): Add sanity checking for '@' templates.
index 92b5002..96eb725 100644 (file)
@@ -3159,6 +3159,8 @@ notice_stack_pointer_modification_1 (x, pat, data)
       || (GET_CODE (x) == MEM
          && (GET_CODE (XEXP (x, 0)) == PRE_DEC
              || GET_CODE (XEXP (x, 0)) == PRE_INC
+             || GET_CODE (XEXP (x, 0)) == PRE_MODIFY
+             || GET_CODE (XEXP (x, 0)) == POST_MODIFY
              || GET_CODE (XEXP (x, 0)) == POST_DEC
              || GET_CODE (XEXP (x, 0)) == POST_INC)
          && XEXP (XEXP (x, 0), 0) == stack_pointer_rtx))