diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-01 17:57:27 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-01 17:57:27 +0000 |
commit | 2c0e001bbb4f42e4d68a61140344a1e16fd3cdfe (patch) | |
tree | 86574f9925b42a9611cf138f95cf23040f8ab07f /gcc/crtstuff.c | |
parent | 2926d140e3eb8b89a785cf65ad9c62021c321f58 (diff) | |
download | ppe42-gcc-2c0e001bbb4f42e4d68a61140344a1e16fd3cdfe.tar.gz ppe42-gcc-2c0e001bbb4f42e4d68a61140344a1e16fd3cdfe.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44547 138bc75d-0d04-0410-961f-82ee72b054a4
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 862eeacfc61..9f62009ee58 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__)) = { }; |