diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-10-10 11:33:39 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-10-10 11:33:39 +0000 |
commit | 6d2f8887355e2d21ecc2ec4201f7b5fb86e29f81 (patch) | |
tree | 1354eff221b576ada39ccb796806717a4dcf6fdb /gcc/varasm.c | |
parent | 3717a9799293e47e4bbc18f7cda76b88e886e22e (diff) | |
download | gcc-6d2f8887355e2d21ecc2ec4201f7b5fb86e29f81.zip gcc-6d2f8887355e2d21ecc2ec4201f7b5fb86e29f81.tar.gz gcc-6d2f8887355e2d21ecc2ec4201f7b5fb86e29f81.tar.bz2 |
calls.c: Fix formatting.
* calls.c: Fix formatting.
* c-decl.c: Likewise.
* cfgcleanup.c: Likewise.
* combine.c: Likewise.
* cppfiles.c: Likewise.
* cpplib.c: Likewise.
* cppmacro.c: Likewise.
* crtstuff.c: Likewise.
* cse.c: Likewise.
* dwarf2out.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* gcse.c: Likewise.
* genattrtab.c: Likewise.
* ggc-page.c: Likewise.
* integrate.c: Likewise.
* libgcc2.c: Likewise.
* loop.c: Likewise.
* optabs.c: Likewise.
* profile.c: Likewise.
* protoize.c: Likewise.
* real.c: Likewise.
* recog.c: Likewise.
* reload1.c: Likewise.
* reload.c: Likewise.
* reorg.c: Likewise.
* resource.c: Likewise.
* sched-rgn.c: Likewise.
* sdbout.c: Likewise.
* stmt.c: Likewise.
* toplev.c: Likewise.
* varasm.c: Likewise.
From-SVN: r46145
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 0dea54de..80c665f 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -977,7 +977,7 @@ make_decl_rtl (decl, asmspec) } /* If this variable is to be treated as volatile, show its - tree node has side effects. */ + tree node has side effects. */ if ((flag_volatile_global && TREE_CODE (decl) == VAR_DECL && TREE_PUBLIC (decl)) || ((flag_volatile_static && TREE_CODE (decl) == VAR_DECL @@ -1070,7 +1070,7 @@ default_named_section_asm_out_destructor (symbol, priority) const char *section = ".dtors"; char buf[16]; - /* ??? This only works reliably with the GNU linker. */ + /* ??? This only works reliably with the GNU linker. */ if (priority != DEFAULT_INIT_PRIORITY) { sprintf (buf, ".dtors.%.5u", @@ -1132,7 +1132,7 @@ default_named_section_asm_out_constructor (symbol, priority) const char *section = ".ctors"; char buf[16]; - /* ??? This only works reliably with the GNU linker. */ + /* ??? This only works reliably with the GNU linker. */ if (priority != DEFAULT_INIT_PRIORITY) { sprintf (buf, ".ctors.%.5u", |