diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-08-01 17:57:27 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-08-01 17:57:27 +0000 |
commit | ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f (patch) | |
tree | 86574f9925b42a9611cf138f95cf23040f8ab07f /gcc/crtstuff.c | |
parent | 60a78ccfac331b0d4ff71fcdddcfc302817eb110 (diff) | |
download | gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.zip gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.tar.gz gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.tar.bz2 |
alias.c: Fix comment formatting.
* alias.c: Fix comment formatting.
* bitmap.c: Likewise.
* builtins.c: Likewise.
* calls.c: Likewise.
* c-common.c: Likewise.
* c-decl.c: Likewise.
* c-dump.c: Likewise.
* c-lex.c: Likewise.
* collect2.c: Likewise.
* combine.c: Likewise.
* conflict.c: Likewise.
* cppfiles.c: Likewise.
* cppinit.c: Likewise.
* cpplex.c: Likewise.
* cpplib.c: Likewise.
* cppmacro.c: Likewise.
* cppspec.c: Likewise.
* c-pragma.c: Likewise.
* crtstuff.c: Likewise.
* cse.c: Likewise.
* cselib.c: Likewise.
* c-semantics.c: Likewise.
* c-typeck.c: Likewise.
From-SVN: r44547
Diffstat (limited to 'gcc/crtstuff.c')
-rw-r--r-- | gcc/crtstuff.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index 862eeac..9f62009 100644 --- a/gcc/crtstuff.c +++ b/gcc/crtstuff.c @@ -556,13 +556,13 @@ STATIC ui32 __FRAME_END__[] __attribute__ ((__unused__)) = { 0 }; by putting a constructor in crtbegin.o and a destructor in crtend.o. crtend.o also puts in the terminating zero in the frame information - segment. */ + segment. */ /* The crtstuff for other object formats use the symbol __EH_FRAME_BEGIN__ to figure out the start of the exception frame, but here we use getsectbynamefromheader to find this value. Either method would work, but this method avoids creating any global symbols, which seems - cleaner. */ + cleaner. */ #include <mach-o/ldsyms.h> extern const struct section * @@ -600,7 +600,7 @@ __dereg_frame_dtor (void) __deregister_frame_info ((void *) eh_frame->addr); } -/* Terminate the frame section with a final zero. */ +/* Terminate the frame section with a final zero. */ /* Force cc1 to switch to .data section. */ static void * force_to_data[1] __attribute__ ((__unused__)) = { }; |