* cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 12 May 2001 06:36:57 +0000 (06:36 +0000)
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 12 May 2001 06:36:57 +0000 (06:36 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41985 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/cp-tree.h

index e80ec37..a1efbd1 100644 (file)
@@ -1,3 +1,7 @@
+2001-05-11  Ira Ruben  <ira@apple.com>
+
+       * cp/cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.
+
 2001-05-11  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * cp-tree.h (finish_label_expr, lookup_label): Delete.
index c2ef391..1878e1d 100644 (file)
@@ -527,10 +527,6 @@ struct tree_srcloc
 /* In a RECORD_TYPE or UNION_TYPE, nonzero if any component is read-only.  */
 #define C_TYPE_FIELDS_READONLY(type) TYPE_LANG_FLAG_0 (type)
 
-/* Record in each node resulting from a binary operator
-   what operator was specified for it.  */
-#define C_EXP_ORIGINAL_CODE(exp) ((enum tree_code) TREE_COMPLEXITY (exp))
-
 /* Store a value in that field.  */
 #define C_SET_EXP_ORIGINAL_CODE(exp, code) \
   (TREE_COMPLEXITY (exp) = (int)(code))