https://gcc.gnu.org/g:0d68bfe2bff7e7022e173bedfb918b796d3cb0af

commit r15-3786-g0d68bfe2bff7e7022e173bedfb918b796d3cb0af
Author: Andrew Pinski <quic_apin...@quicinc.com>
Date:   Sun Sep 22 18:12:36 2024 +0000

    Remove commented out PHI_ARG_DEF macro defition
    
    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 <quic_apin...@quicinc.com>

Diff:
---
 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 b6534f18c660..f368d5b59f8c 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)                                     \

Reply via email to