diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2002-04-09 23:11:36 +0000 |
---|---|---|
committer | Loren J. Rittle <ljrittle@gcc.gnu.org> | 2002-04-09 23:11:36 +0000 |
commit | b911c031b3281db6d8b705b0e63c37da3e2193d2 (patch) | |
tree | 644d44bb8eff6a1011aedd7015246966aa034847 | |
parent | 0dba73e0ab4dba1f4f4850f326950bc91581329e (diff) | |
download | gcc-b911c031b3281db6d8b705b0e63c37da3e2193d2.tar.gz |
gcconfig.h (DATAEND): Update comment example to match reality.
* include/private/gcconfig.h (DATAEND): Update comment example
to match reality.
From-SVN: r52098
-rw-r--r-- | boehm-gc/ChangeLog | 5 | ||||
-rw-r--r-- | boehm-gc/include/private/gcconfig.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 896ec3e3bcf..c7d5818ccb2 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,8 @@ +2002-04-09 Loren J. Rittle <ljrittle@acm.org> + + * include/private/gcconfig.h (DATAEND): Update comment example + to match reality. + 2002-04-08 Loren J. Rittle <ljrittle@acm.org> * include/private/gcconfig.h (DATAEND): Clarify comment. diff --git a/boehm-gc/include/private/gcconfig.h b/boehm-gc/include/private/gcconfig.h index 9151a2ff796..519bfc74544 100644 --- a/boehm-gc/include/private/gcconfig.h +++ b/boehm-gc/include/private/gcconfig.h @@ -453,9 +453,9 @@ * DATAEND, if not `end' where `end' is defined as ``extern int end[];''. * RTH suggests gaining access to linker script synth'd values with * this idiom instead of `&end' where `end' is defined as ``extern int end;'' . - * Otherwise, ``GCC will assume these are in .sdata/.sbss'' and it will + * Otherwise, ``GCC will assume these are in .sdata/.sbss'' and it will, e.g., * cause failures on alpha*-*-* with ``-msmall-data or -fpic'' or mips-*-* - * or ia64-*-* without any special options. + * without any special options. * * ALIGN_DOUBLE of GC_malloc should return blocks aligned to twice * the pointer size. |