aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2005-07-02 14:19:59 +0100
committerJoseph Myers <jsm28@gcc.gnu.org>2005-07-02 14:19:59 +0100
commitc85ce869e757158c55fd428befdb59ad5d537c1f (patch)
tree3339d42d6bdaab3f873b91e89993fa54cc7f96e7 /gcc/config
parentdee158440e16ef7272d823b9bd5e6d414968fd8a (diff)
downloadgcc-c85ce869e757158c55fd428befdb59ad5d537c1f.zip
gcc-c85ce869e757158c55fd428befdb59ad5d537c1f.tar.gz
gcc-c85ce869e757158c55fd428befdb59ad5d537c1f.tar.bz2
c.opt, [...]: Remove "." from end of help texts.
* c.opt, common.opt, config/bfin/bfin.opt, config/pa/pa.opt, config/rs6000/rs6000.opt, params.def: Remove "." from end of help texts. * config/avr/avr.c: Do not use '`' as left quote. * config/rs6000/rs6000.c, config/s390/s390.c, opts.c, tree.c: Remove "." from end of diagnostics. Make diagnostics start with lowercase letter. cp: * name-lookup.c, parser.c: Use %q, %< and %> to quote in diagnostics. fortran: * lang.opt: Remove "." from end of help texts. objc: * objc-act.c: Use %q to quote in diagnostics. From-SVN: r101533
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/avr/avr.c6
-rw-r--r--gcc/config/bfin/bfin.opt2
-rw-r--r--gcc/config/pa/pa.opt4
-rw-r--r--gcc/config/rs6000/rs6000.c8
-rw-r--r--gcc/config/rs6000/rs6000.opt4
-rw-r--r--gcc/config/s390/s390.c10
6 files changed, 17 insertions, 17 deletions
diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c
index 4477335..e061021 100644
--- a/gcc/config/avr/avr.c
+++ b/gcc/config/avr/avr.c
@@ -269,7 +269,7 @@ avr_override_options (void)
if (!t->name)
{
- fprintf (stderr, "unknown MCU `%s' specified\nKnown MCU names:\n",
+ fprintf (stderr, "unknown MCU '%s' specified\nKnown MCU names:\n",
avr_mcu_name);
for (t = avr_mcu_types; t->name; t++)
fprintf (stderr," %s\n", t->name);
@@ -4684,7 +4684,7 @@ avr_handle_fndecl_attribute (tree *node, tree name,
{
if (strncmp (func_name, "__vector", strlen ("__vector")) != 0)
{
- warning (0, "`%s' appears to be a misspelled interrupt handler",
+ warning (0, "%qs appears to be a misspelled interrupt handler",
func_name);
}
}
@@ -4692,7 +4692,7 @@ avr_handle_fndecl_attribute (tree *node, tree name,
{
if (strncmp (func_name, "__vector", strlen ("__vector")) != 0)
{
- warning (0, "`%s' appears to be a misspelled signal handler",
+ warning (0, "%qs appears to be a misspelled signal handler",
func_name);
}
}
diff --git a/gcc/config/bfin/bfin.opt b/gcc/config/bfin/bfin.opt
index 69bf7b2..da5fd59 100644
--- a/gcc/config/bfin/bfin.opt
+++ b/gcc/config/bfin/bfin.opt
@@ -25,7 +25,7 @@ Omit frame pointer for leaf functions
mlow64k
Target Report Mask(LOW_64K)
-Program is entirely located in low 64k of memory.
+Program is entirely located in low 64k of memory
mcsync
Target Report Mask(CSYNC)
diff --git a/gcc/config/pa/pa.opt b/gcc/config/pa/pa.opt
index 230a1ef..999af66 100644
--- a/gcc/config/pa/pa.opt
+++ b/gcc/config/pa/pa.opt
@@ -49,7 +49,7 @@ Generate fast indirect calls
mfixed-range=
Target RejectNegative Joined
-Specify range of registers to make fixed.
+Specify range of registers to make fixed
mgas
Target Report Mask(GAS)
@@ -98,7 +98,7 @@ Use portable calling conventions
mschedule=
Target RejectNegative Joined
-Specify CPU for scheduling purposes. Valid arguments are 700, 7100, 7100LC, 7200, 7300, and 8000.
+Specify CPU for scheduling purposes. Valid arguments are 700, 7100, 7100LC, 7200, 7300, and 8000
msoft-float
Target Report Mask(SOFT_FLOAT)
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 2c71ab1..a1cf22b 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -4051,9 +4051,9 @@ init_cumulative_args (CUMULATIVE_ARGS *cum, tree fntype,
&& TARGET_ALTIVEC_ABI
&& ALTIVEC_VECTOR_MODE (TYPE_MODE (TREE_TYPE (fntype))))
{
- error ("Cannot return value in vector register because"
+ error ("cannot return value in vector register because"
" altivec instructions are disabled, use -maltivec"
- " to enable them.");
+ " to enable them");
}
}
@@ -4297,9 +4297,9 @@ function_arg_advance (CUMULATIVE_ARGS *cum, enum machine_mode mode,
{
cum->vregno++;
if (!TARGET_ALTIVEC)
- error ("Cannot pass argument in vector register because"
+ error ("cannot pass argument in vector register because"
" altivec instructions are disabled, use -maltivec"
- " to enable them.");
+ " to enable them");
/* PowerPC64 Linux and AIX allocate GPRs for a vector argument
even if it is going to be passed in a vector register.
diff --git a/gcc/config/rs6000/rs6000.opt b/gcc/config/rs6000/rs6000.opt
index 3b60150..43392dd 100644
--- a/gcc/config/rs6000/rs6000.opt
+++ b/gcc/config/rs6000/rs6000.opt
@@ -164,7 +164,7 @@ Generate VRSAVE instructions when generating AltiVec code
mvrsave=
Target RejectNegative Joined
--mvrsave=yes/no Deprecated option. Use -mvrsave/-mno-vrsave instead.
+-mvrsave=yes/no Deprecated option. Use -mvrsave/-mno-vrsave instead
misel
Target Var(rs6000_isel)
@@ -212,7 +212,7 @@ Warn about deprecated 'vector long ...' AltiVec type usage
mfloat-gprs=
Target RejectNegative Joined
--mfloat-gprs= Select GPR floating point method.
+-mfloat-gprs= Select GPR floating point method
mlong-double-
Target RejectNegative Joined UInteger
diff --git a/gcc/config/s390/s390.c b/gcc/config/s390/s390.c
index 1dfefc5..c578533 100644
--- a/gcc/config/s390/s390.c
+++ b/gcc/config/s390/s390.c
@@ -1212,9 +1212,9 @@ override_options (void)
/* Sanity checks. */
if (TARGET_ZARCH && !(s390_arch_flags & PF_ZARCH))
- error ("z/Architecture mode not supported on %s.", s390_arch_string);
+ error ("z/Architecture mode not supported on %s", s390_arch_string);
if (TARGET_64BIT && !TARGET_ZARCH)
- error ("64-bit ABI not supported in ESA/390 mode.");
+ error ("64-bit ABI not supported in ESA/390 mode");
/* Set processor cost function. */
@@ -1226,7 +1226,7 @@ override_options (void)
if (TARGET_BACKCHAIN && TARGET_PACKED_STACK && TARGET_HARD_FLOAT)
error ("-mbackchain -mpacked-stack -mhard-float are not supported "
- "in combination.");
+ "in combination");
if (s390_stack_size)
{
@@ -3781,7 +3781,7 @@ print_operand_address (FILE *file, rtx addr)
if (!s390_decompose_address (addr, &ad)
|| (ad.base && !REG_OK_FOR_BASE_STRICT_P (ad.base))
|| (ad.indx && !REG_OK_FOR_INDEX_STRICT_P (ad.indx)))
- output_operand_lossage ("Cannot decompose address.");
+ output_operand_lossage ("cannot decompose address");
if (ad.disp)
output_addr_const (file, ad.disp);
@@ -5801,7 +5801,7 @@ s390_frame_info (void)
cfun_frame_layout.frame_size = get_frame_size ();
if (!TARGET_64BIT && cfun_frame_layout.frame_size > 0x7fff0000)
- fatal_error ("Total size of local variables exceeds architecture limit.");
+ fatal_error ("total size of local variables exceeds architecture limit");
if (!TARGET_PACKED_STACK)
{