This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH][match-and-simplify] Mark conditional converts with '?'
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Richard Biener <rguenther at suse dot de>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Tue, 12 Aug 2014 12:47:23 +0200
- Subject: Re: [PATCH][match-and-simplify] Mark conditional converts with '?'
- Authentication-results: sourceware.org; auth=none
- References: <alpine dot LSU dot 2 dot 11 dot 1408121214270 dot 20733 at zhemvz dot fhfr dot qr>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Tue, Aug 12, 2014 at 12:15:20PM +0200, Richard Biener wrote:
> @@ -2422,6 +2441,7 @@ main(int argc, char **argv)
> add_operator (SYM, # SYM, # TYPE, NARGS);
> #define END_OF_BASE_TREE_CODES
> #include "tree.def"
> +add_operator (CONVERT1, "CONVERT0", "tcc_unary", 1);
Pasto? Shouldn't that be CONVERT0, ?
> add_operator (CONVERT1, "CONVERT1", "tcc_unary", 1);
> add_operator (CONVERT2, "CONVERT2", "tcc_unary", 1);
> #undef END_OF_BASE_TREE_CODES
Jakub