[Bug bootstrap/92433] [10 regression] r276645 breaks bootstrap on powerpc
jakub at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Sat Nov 9 17:54:00 GMT 2019
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92433
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu.org,
| |segher at gcc dot gnu.org
--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
The:
tree t;
t = args[2], args[2] = args[1], args[1] = t;
t = arg_type[2], arg_type[2] = arg_type[1], arg_type[1] = t;
would be much clearer if written as:
std::swap (args[1], args[2]);
std::swap (arg_type[1], arg_type[2]);
More information about the Gcc-bugs
mailing list