This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
For instance, gcc emits:
movab rpb,%r0 movab 100(%r0),%r1 cvtwl (%r1),%r0
but the movab 100(%r0),%r1 is completely unneeded, this should have been emitted as:
movab rpb,%r0 cvtwl 100(%r0),%r0
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |