summaryrefslogtreecommitdiffstats
path: root/gcc/config/ia64/ia64.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/ia64/ia64.c')
-rw-r--r--gcc/config/ia64/ia64.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c
index 24359222ea3..9201bb8a549 100644
--- a/gcc/config/ia64/ia64.c
+++ b/gcc/config/ia64/ia64.c
@@ -482,7 +482,7 @@ ia64_handle_model_attribute (tree *node, tree name, tree args,
}
else
{
- warning ("invalid argument of %qs attribute",
+ warning (0, "invalid argument of %qs attribute",
IDENTIFIER_POINTER (name));
*no_add_attrs = true;
}
@@ -514,7 +514,7 @@ ia64_handle_model_attribute (tree *node, tree name, tree args,
break;
default:
- warning ("%qs attribute ignored", IDENTIFIER_POINTER (name));
+ warning (0, "%qs attribute ignored", IDENTIFIER_POINTER (name));
*no_add_attrs = true;
break;
}
@@ -4548,7 +4548,7 @@ fix_range (const char *const_str)
dash = strchr (str, '-');
if (!dash)
{
- warning ("value of -mfixed-range must have form REG1-REG2");
+ warning (0, "value of -mfixed-range must have form REG1-REG2");
return;
}
*dash = '\0';
@@ -4560,14 +4560,14 @@ fix_range (const char *const_str)
first = decode_reg_name (str);
if (first < 0)
{
- warning ("unknown register name: %s", str);
+ warning (0, "unknown register name: %s", str);
return;
}
last = decode_reg_name (dash + 1);
if (last < 0)
{
- warning ("unknown register name: %s", dash + 1);
+ warning (0, "unknown register name: %s", dash + 1);
return;
}
@@ -4575,7 +4575,7 @@ fix_range (const char *const_str)
if (first > last)
{
- warning ("%s-%s is an empty range", str, dash + 1);
+ warning (0, "%s-%s is an empty range", str, dash + 1);
return;
}
@@ -4656,7 +4656,7 @@ ia64_override_options (void)
if (TARGET_INLINE_SQRT == INL_MIN_LAT)
{
- warning ("not yet implemented: latency-optimized inline square root");
+ warning (0, "not yet implemented: latency-optimized inline square root");
TARGET_INLINE_SQRT = INL_MAX_THR;
}
OpenPOWER on IntegriCloud