]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Remove commented out PHI_ARG_DEF macro defition
authorAndrew Pinski <quic_apinski@quicinc.com>
Sun, 22 Sep 2024 18:12:36 +0000 (18:12 +0000)
committerAndrew Pinski <quic_apinski@quicinc.com>
Mon, 23 Sep 2024 07:45:50 +0000 (00:45 -0700)
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_apinski@quicinc.com>
gcc/tree-ssa-operands.h

index b6534f18c6602e88a4d03fdac52404b343a329b2..f368d5b59f8c62e284848ae9d84d891d23f5c85e 100644 (file)
@@ -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)                                     \