public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/pheeck/heads/sccp)] sccp.cc now compiles
@ 2023-02-15 10:12 Filip Kastl
  0 siblings, 0 replies; 2+ messages in thread
From: Filip Kastl @ 2023-02-15 10:12 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:940b3c51bb3e8ffafad3433f3ffab3df9a35f460

commit 940b3c51bb3e8ffafad3433f3ffab3df9a35f460
Author: Filip Kastl <filip.kastl@gmail.com>
Date:   Fri Jun 10 16:00:59 2022 +0200

    sccp.cc now compiles

Diff:
---
 gcc/Makefile.in | 2 ++
 gcc/sccp.cc     | 9 +++++----
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 5ad638f59d8..4d6d78c4aab 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1660,6 +1660,7 @@ OBJS = \
 	tree-ssa-forwprop.o \
 	tree-ssa-ifcombine.o \
 	tree-ssa-live.o \
+	sccp.o \
 	tree-ssa-loop-ch.o \
 	tree-ssa-loop-im.o \
 	tree-ssa-loop-ivcanon.o \
@@ -3676,6 +3677,7 @@ PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
   gimple-walk.h gimplify-me.h pass_manager.h print-rtl.h stmt.h \
   tree-dfa.h tree-hasher.h tree-nested.h tree-object-size.h tree-outof-ssa.h \
   tree-parloops.h tree-ssa-address.h tree-ssa-coalesce.h tree-ssa-dom.h \
+  sccp.h \
   tree-ssa-loop.h tree-ssa-loop-ivopts.h tree-ssa-loop-manip.h \
   tree-ssa-loop-niter.h tree-ssa-ter.h tree-ssa-threadedge.h \
   tree-ssa-threadupdate.h inchash.h wide-int.h signop.h hash-map.h \
diff --git a/gcc/sccp.cc b/gcc/sccp.cc
index 3985e5c2dab..c959436955e 100644
--- a/gcc/sccp.cc
+++ b/gcc/sccp.cc
@@ -25,17 +25,18 @@ along with GCC; see the file COPYING3.  If not see
 #include "system.h"
 #include "coretypes.h"
 #include "backend.h"
-#include "target.h"
 #include "tree.h"
+#include "gimple.h"
 #include "tree-pass.h"
-#include "memmodel.h"
-#include "tm_p.h"
+#include "gimple-iterator.h"
+
+#include "gimple-pretty-print.h"
 
 /* TODO Popisek passu  */
 
 namespace {
 
-const pass_data pass_data_adjust_alignment =
+const pass_data pass_data_sccp =
 {
   GIMPLE_PASS, /* type */
   "sccp", /* name */

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gcc(refs/users/pheeck/heads/sccp)] sccp.cc now compiles
@ 2022-06-10 14:21 Filip Kastl
  0 siblings, 0 replies; 2+ messages in thread
From: Filip Kastl @ 2022-06-10 14:21 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:a56778f32bfb171b64008366da13958a376f9f9f

commit a56778f32bfb171b64008366da13958a376f9f9f
Author: Filip Kastl <filip.kastl@gmail.com>
Date:   Fri Jun 10 16:00:59 2022 +0200

    sccp.cc now compiles

Diff:
---
 gcc/Makefile.in | 2 ++
 gcc/sccp.cc     | 9 +++++----
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index b6dcc45a58a..517a830c67b 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1651,6 +1651,7 @@ OBJS = \
 	tree-ssa-forwprop.o \
 	tree-ssa-ifcombine.o \
 	tree-ssa-live.o \
+	sccp.o \
 	tree-ssa-loop-ch.o \
 	tree-ssa-loop-im.o \
 	tree-ssa-loop-ivcanon.o \
@@ -3667,6 +3668,7 @@ PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
   gimple-walk.h gimplify-me.h pass_manager.h print-rtl.h stmt.h \
   tree-dfa.h tree-hasher.h tree-nested.h tree-object-size.h tree-outof-ssa.h \
   tree-parloops.h tree-ssa-address.h tree-ssa-coalesce.h tree-ssa-dom.h \
+  sccp.h \
   tree-ssa-loop.h tree-ssa-loop-ivopts.h tree-ssa-loop-manip.h \
   tree-ssa-loop-niter.h tree-ssa-ter.h tree-ssa-threadedge.h \
   tree-ssa-threadupdate.h inchash.h wide-int.h signop.h hash-map.h \
diff --git a/gcc/sccp.cc b/gcc/sccp.cc
index 3985e5c2dab..c959436955e 100644
--- a/gcc/sccp.cc
+++ b/gcc/sccp.cc
@@ -25,17 +25,18 @@ along with GCC; see the file COPYING3.  If not see
 #include "system.h"
 #include "coretypes.h"
 #include "backend.h"
-#include "target.h"
 #include "tree.h"
+#include "gimple.h"
 #include "tree-pass.h"
-#include "memmodel.h"
-#include "tm_p.h"
+#include "gimple-iterator.h"
+
+#include "gimple-pretty-print.h"
 
 /* TODO Popisek passu  */
 
 namespace {
 
-const pass_data pass_data_adjust_alignment =
+const pass_data pass_data_sccp =
 {
   GIMPLE_PASS, /* type */
   "sccp", /* name */


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-02-15 10:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-15 10:12 [gcc(refs/users/pheeck/heads/sccp)] sccp.cc now compiles Filip Kastl
  -- strict thread matches above, loose matches on Subject: below --
2022-06-10 14:21 Filip Kastl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).