This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[tree-ssa, commited] Remove STRIP_CONTAINERS


Sigh...

	* tree-cfg.c (STRIP_CONTAINERS): Remove unused macro.

Index: tree-cfg.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Attic/tree-cfg.c,v
retrieving revision 1.1.4.196
diff -c -3 -p -r1.1.4.196 tree-cfg.c
*** tree-cfg.c  6 Nov 2003 15:32:41 -0000       1.1.4.196
--- tree-cfg.c  6 Nov 2003 17:34:50 -0000
*************** static tree_stmt_iterator bsi_link_after
*** 139,153 ****
  /* Set the pending stmt field.  */
  #define SET_PENDING_STMT(e, t)        ((e->insns) = (rtx)t)

-
- /* Remove any COMPOUND_EXPR container from NODE.  */
- #define STRIP_CONTAINERS(NODE)                                        \
-   do {                                                                \
-     while (TREE_CODE (NODE) == COMPOUND_EXPR)                 \
-       NODE = TREE_OPERAND (NODE, 0);                          \
-   } while (0)
-
-
  /*---------------------------------------------------------------------------
                              Create basic blocks
  ---------------------------------------------------------------------------*/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]