diff options
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 0dea54d..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", |