This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
SSA Iterators
- From: Nicholas Krause <xerofoify at gmail dot com>
- To: Richard Biener <rguenther at suse dot de>
- Cc: gcc Mailing List <gcc at gcc dot gnu dot org>
- Date: Thu, 30 Jan 2020 00:44:00 -0500
- Subject: SSA Iterators
Greetings,
I was looking into starting to cleaning up the SSA trees for various
reasons and iterators
seem to be the easiest to do. I searched the list to see if someone
mentioned it before
and I ran across this:
https://gcc.gnu.org/ml/gcc-patches/2019-10/msg02031.html
If your trying to get a second ++ working then why not override it
prefix as your
just doing it for postfix and those can be separate. Its not ideal to
have two
different versions for prefix and postfix in terms of overloading but it
may be
the simplest solution here.
Nick