diff options
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 0dd0248..378578d 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -4897,12 +4897,12 @@ fold_truthop (enum tree_code code, tree truth_type, tree lhs, tree rhs) { if (wanted_code == NE_EXPR) { - warning ("`or' of unmatched not-equal tests is always 1"); + warning ("%<or%> of unmatched not-equal tests is always 1"); return constant_boolean_node (true, truth_type); } else { - warning ("`and' of mutually exclusive equal-tests is always 0"); + warning ("%<and%> of mutually exclusive equal-tests is always 0"); return constant_boolean_node (false, truth_type); } } |