This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] do not lower a/b to a*(1/b)
On Sun, May 15, 2005 at 10:46:00AM +0200, Paolo Bonzini wrote:
> +++ tree-ssa.c 15 May 2005 08:43:12 -0000
> @@ -28,6 +28,7 @@ Boston, MA 02111-1307, USA. */
> #include "tm_p.h"
> #include "ggc.h"
> #include "langhooks.h"
> +#include "real.h"
Please put all this code in a new file. It's not related to
going into ssa form.
> + for (bsi = bsi_start (bb);
> + !bsi_end_p (bsi) && TREE_CODE (bsi_stmt (bsi)) == LABEL_EXPR;
> + bsi_next (&bsi))
bsi_after_labels
Otherwise it looks ok.
r~