Commit 54c1f920 by Kazu Hirata Committed by Kazu Hirata

* tree.h (STRIP_MAIN_TYPE_NOPS): Remove.

From-SVN: r97840
parent df696025
......@@ -12,6 +12,8 @@
* function.h (nonlocal_labels): Remove.
* tree.h (STRIP_MAIN_TYPE_NOPS): Remove.
2005-04-08 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/tpf.h (ASM_SPEC): Define.
......
......@@ -720,17 +720,6 @@ extern void tree_operand_check_failed (int, enum tree_code,
== TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (EXP, 0))))) \
(EXP) = TREE_OPERAND (EXP, 0)
/* Like STRIP_NOPS, but don't alter the TREE_TYPE main variant either. */
#define STRIP_MAIN_TYPE_NOPS(EXP) \
while ((TREE_CODE (EXP) == NOP_EXPR \
|| TREE_CODE (EXP) == CONVERT_EXPR \
|| TREE_CODE (EXP) == NON_LVALUE_EXPR) \
&& TREE_OPERAND (EXP, 0) != error_mark_node \
&& (TYPE_MAIN_VARIANT (TREE_TYPE (EXP)) \
== TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (EXP, 0))))) \
(EXP) = TREE_OPERAND (EXP, 0)
/* Like STRIP_NOPS, but don't alter the TREE_TYPE either. */
#define STRIP_TYPE_NOPS(EXP) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment