Re: [PATCH 1/3] or1k: libgcc: initial support for openrisc

2018-08-29 Thread Stafford Horne
On Wed, Aug 29, 2018 at 02:08:07PM -0700, Richard Henderson wrote: > On 08/26/2018 02:18 PM, Stafford Horne wrote: > > + .section .init > > + .align 4 > > + .global _init > > + .type _init,@function > > +_init: > > + l.sw-4(r1), r9 > > + l.addi r1,r1,-4 > > + > > + .section .fi

Re: [PATCH 1/3] or1k: libgcc: initial support for openrisc

2018-08-29 Thread Richard Henderson
On 08/26/2018 02:18 PM, Stafford Horne wrote: > + .section .init > + .align 4 > + .global _init > + .type _init,@function > +_init: > + l.sw-4(r1), r9 > + l.addi r1,r1,-4 > + > + .section .fini > + .align 4 > + .global _fini > + .type _fini,@functio

[PATCH 1/3] or1k: libgcc: initial support for openrisc

2018-08-26 Thread Stafford Horne
-mm-dd Stafford Horne Richard Henderson libgcc/ChangeLog: * config.host: Add OpenRISC support. * config/or1k/*: New. --- libgcc/config.host| 13 +++ libgcc/config/or1k/crti.S | 37 ++ libgcc/config/or1k/crtn.S | 33 +