This was commented out since r0-125500-g80560f9521f81a and a new
defition was added at the same time. Let's remove the commented
out version.
gcc/ChangeLog:
* tree-ssa-operands.h (PHI_ARG_DEF): Remove definition.
Signed-off-by: Andrew Pinski <[email protected]>
---
gcc/tree-ssa-operands.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/gcc/tree-ssa-operands.h b/gcc/tree-ssa-operands.h
index b6534f18c66..f368d5b59f8 100644
--- a/gcc/tree-ssa-operands.h
+++ b/gcc/tree-ssa-operands.h
@@ -74,9 +74,6 @@ struct GTY(()) ssa_operands {
#define PHI_RESULT(PHI) gimple_phi_result (PHI)
#define SET_PHI_RESULT(PHI, V) SET_DEF (gimple_phi_result_ptr (PHI), (V))
-/*
-#define PHI_ARG_DEF(PHI, I) USE_FROM_PTR (PHI_ARG_DEF_PTR ((PHI), (I)))
-*/
#define PHI_ARG_DEF_PTR(PHI, I) gimple_phi_arg_imm_use_ptr ((PHI), (I))
#define PHI_ARG_DEF(PHI, I) gimple_phi_arg_def ((PHI), (I))
#define SET_PHI_ARG_DEF(PHI, I, V) \
--
2.34.1