tech-toolchain archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: Regression of GCC >= 4.8.5 for 32-bit powerpc
> On Dec 13, 2016, at 8:06 PM, Rin Okuyama <rokuyama%rk.phys.keio.ac.jp@localhost> wrote:
>
> Thank you for your correction. I slightly modified your version
> in order to avoid dangling ".machine". With this patch, I obtained
> working kernel and userland for IBM 405 (evbppc). Also, build.sh
> successfully completes for evbppc-powerpc64. Is this OK with you?
>
> Rin
Look fine.
> + p = "ppc64";
> + else if (!global_options_set.x_rs6000_cpu_index)
> + p = "ppc";
> + if (p != NULL)
> + fprintf (asm_out_file, "\t.machine %s\n", p);
> }
> #endif
However. You can drop the "if (p != NULL)" if you do
else
return;
gcc_assert(p != NULL);
fprintf (asm_out_file, "\t.machine %s\n", p);
Pendantic I know.
Home |
Main Index |
Thread Index |
Old Index