* sparc/crt0.S: Declare use of system registers.
* sparc/cygmon-crt0.S: Ditto. * sparc/erc32-crt0.S: Ditto. * sparc/traps.S: Ditto.
This commit is contained in:
parent
128e9e0be5
commit
5ae2368e92
|
@ -1,3 +1,10 @@
|
|||
2015-01-22 Yaakov Selkowitz <yselkowi@redhat.com>
|
||||
|
||||
* sparc/crt0.S: Declare use of system registers.
|
||||
* sparc/cygmon-crt0.S: Ditto.
|
||||
* sparc/erc32-crt0.S: Ditto.
|
||||
* sparc/traps.S: Ditto.
|
||||
|
||||
2015-01-21 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* configure.in: Add Visium support.
|
||||
|
@ -22,7 +29,7 @@
|
|||
|
||||
* or1k/include/or1k-sprs.h: New auto-generated header file.
|
||||
|
||||
2015-01-05 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
|
||||
2015-01-05 Yaakov Selkowitz <yselkowi@redhat.com>
|
||||
|
||||
* lm32/Makefile.in (install): Respect DESTDIR.
|
||||
(install-scripts): Ditto.
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
*/
|
||||
#include "asm.h"
|
||||
|
||||
.register %g2, #scratch
|
||||
.register %g3, #scratch
|
||||
|
||||
.data
|
||||
.align 8
|
||||
.ascii "DaTa" ! this is the first address in the data section
|
||||
|
|
|
@ -22,6 +22,9 @@
|
|||
#define SAVE_SIZE -64
|
||||
#endif
|
||||
|
||||
.register %g2, #scratch
|
||||
.register %g3, #scratch
|
||||
|
||||
.data
|
||||
.align 8
|
||||
SYM(environ): ! this is the first address in the data section
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
|
||||
#include "asm.h"
|
||||
|
||||
.register %g2, #scratch
|
||||
.register %g3, #scratch
|
||||
|
||||
.data
|
||||
.align 8
|
||||
SYM(environ):
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
#include "asm.h"
|
||||
#include "slite.h"
|
||||
|
||||
.register %g2, #scratch
|
||||
.register %g3, #scratch
|
||||
|
||||
.text
|
||||
.align 4
|
||||
|
||||
|
|
Loading…
Reference in New Issue