diff options
author | Andrew Pinski <quic_apinski@quicinc.com> | 2025-04-18 17:10:12 -0700 |
---|---|---|
committer | Andrew Pinski <quic_apinski@quicinc.com> | 2025-04-25 07:46:43 -0700 |
commit | c565e0d3c4ad7c58697f3661269483ce6067e313 (patch) | |
tree | 3b28fc965044e3e6199c970857bfbd58d947606c | |
parent | 591831dcd4bc9cb9c089d952e73ec8bfcb6cb3fb (diff) | |
download | gcc-c565e0d3c4ad7c58697f3661269483ce6067e313.zip gcc-c565e0d3c4ad7c58697f3661269483ce6067e313.tar.gz gcc-c565e0d3c4ad7c58697f3661269483ce6067e313.tar.bz2 |
phiopt: Remove calls.h include [PR119811]
When the patch, https://gcc.gnu.org/pipermail/gcc-patches/2024-August/660807.html was rewroked into r15-3047-g404d947d8ddd3c,
the include for calls.h was still included and missed that it was no longer needed.
Pushed as obvious.
PR tree-optimization/119811
gcc/ChangeLog:
* tree-ssa-phiopt.cc: Remove calls.h include.
Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
-rw-r--r-- | gcc/tree-ssa-phiopt.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/tree-ssa-phiopt.cc b/gcc/tree-ssa-phiopt.cc index a194bf6..e27166c 100644 --- a/gcc/tree-ssa-phiopt.cc +++ b/gcc/tree-ssa-phiopt.cc @@ -54,7 +54,6 @@ along with GCC; see the file COPYING3. If not see #include "dbgcnt.h" #include "tree-ssa-propagate.h" #include "tree-ssa-dce.h" -#include "calls.h" #include "tree-ssa-loop-niter.h" /* Return the singleton PHI in the SEQ of PHIs for edges E0 and E1. */ |