aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Pinski <quic_apinski@quicinc.com>2024-09-22 18:12:36 +0000
committerAndrew Pinski <quic_apinski@quicinc.com>2024-09-23 00:45:50 -0700
commit0d68bfe2bff7e7022e173bedfb918b796d3cb0af (patch)
tree551e0e6492910958999ef5b24c996a3618417318
parent52783489bce169f71cf7cf47ee435ebc6636675a (diff)
downloadgcc-0d68bfe2bff7e7022e173bedfb918b796d3cb0af.zip
gcc-0d68bfe2bff7e7022e173bedfb918b796d3cb0af.tar.gz
gcc-0d68bfe2bff7e7022e173bedfb918b796d3cb0af.tar.bz2
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_apinski@quicinc.com>
-rw-r--r--gcc/tree-ssa-operands.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/tree-ssa-operands.h b/gcc/tree-ssa-operands.h
index b6534f1..f368d5b 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) \