Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2001-11-13 06:31:14 +0300
committerAnthony Green <green@moxielogic.com>2001-11-13 06:31:14 +0300
commit28f8744e02d0767fa7e8786fa1cd1f0e73b37d26 (patch)
treef4044078190e203ab40b78b73ffff7970350c891
parent4cede8c4ce75127a528ab2dfb33fa5bf925a2d05 (diff)
Add __stack_base__
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/libc/sys/arm/crt0.S3
2 files changed, 6 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 83479c749..6dd6a91a7 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+2001-11-12 Anthony Green <green@redhat.com>
+
+ * libc/sys/arm/crt0.S (__stack_base__): New symbol.
+
2001-11-13 Hans-Peter Nilsson <hp@bitrange.com>
* libc/sys/mmixware/*: Correct spacing in all source files.
diff --git a/newlib/libc/sys/arm/crt0.S b/newlib/libc/sys/arm/crt0.S
index 11ce83c0c..149dfc9e6 100644
--- a/newlib/libc/sys/arm/crt0.S
+++ b/newlib/libc/sys/arm/crt0.S
@@ -243,9 +243,10 @@ change_back:
/* Workspace for Angel calls. */
.data
/* Data returned by monitor SWI. */
+.global __stack_base__
HeapBase: .word 0
HeapLimit: .word 0
-StackBase: .word 0
+__stack_base__: .word 0
StackLimit: .word 0
CommandLine: .space 256,0 /* Maximum length of 255 chars handled. */
#endif