aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMarek Polacek <polacek@redhat.com>2016-09-12 11:43:21 +0000
committerMarek Polacek <mpolacek@gcc.gnu.org>2016-09-12 11:43:21 +0000
commit527a3750579f5b8aa0b49129b80df48cfbaa5813 (patch)
tree7e3206dd209f59a7ca75d2d1202cd747bbd7acd8 /gcc
parent684211e11b3722ae171a76b075fe22528a275a7b (diff)
downloadgcc-527a3750579f5b8aa0b49129b80df48cfbaa5813.zip
gcc-527a3750579f5b8aa0b49129b80df48cfbaa5813.tar.gz
gcc-527a3750579f5b8aa0b49129b80df48cfbaa5813.tar.bz2
extend.texi: Use lowercase "boolean".
* doc/extend.texi: Use lowercase "boolean". * doc/invoke.texi: Likewise. * doc/md.texi: Likewise. * target.def: Likewise. * doc/tm.texi: Regenerated. From-SVN: r240091
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog8
-rw-r--r--gcc/doc/extend.texi8
-rw-r--r--gcc/doc/invoke.texi2
-rw-r--r--gcc/doc/md.texi4
-rw-r--r--gcc/doc/tm.texi2
-rw-r--r--gcc/target.def2
6 files changed, 17 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 049220c..a12f3d8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,11 @@
+2016-09-12 Marek Polacek <polacek@redhat.com>
+
+ * doc/extend.texi: Use lowercase "boolean".
+ * doc/invoke.texi: Likewise.
+ * doc/md.texi: Likewise.
+ * target.def: Likewise.
+ * doc/tm.texi: Regenerated.
+
2016-09-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
PR middle-end/77426
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index aba3b90..8df9d62 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -9486,7 +9486,7 @@ the pointer points.
@end smallexample
The object pointed to by the first argument must be of integer or pointer
-type. It must not be a Boolean type.
+type. It must not be a boolean type.
@emph{Note:} GCC 4.4 and later implement @code{__sync_fetch_and_nand}
as @code{*ptr = ~(tmp & value)} instead of @code{*ptr = ~tmp & value}.
@@ -9772,7 +9772,7 @@ they are not scaled by the size of the type to which the pointer points.
@end smallexample
The object pointed to by the first argument must be of integer or pointer
-type. It must not be a Boolean type. All memory orders are valid.
+type. It must not be a boolean type. All memory orders are valid.
@end deftypefn
@@ -9896,7 +9896,7 @@ behavior for all argument values.
The first built-in function allows arbitrary integral types for operands and
the result type must be pointer to some integral type other than enumerated or
-Boolean type, the rest of the built-in functions have explicit integer types.
+boolean type, the rest of the built-in functions have explicit integer types.
The compiler will attempt to use hardware instructions to implement
these built-in functions where possible, like conditional jump on overflow
@@ -9942,7 +9942,7 @@ These built-in functions are similar to @code{__builtin_add_overflow},
@code{__builtin_sub_overflow}, or @code{__builtin_mul_overflow}, except that
they don't store the result of the arithmetic operation anywhere and the
last argument is not a pointer, but some expression with integral type other
-than enumerated or Boolean type.
+than enumerated or boolean type.
The built-in functions promote the first two operands into infinite precision signed type
and perform addition on those promoted operands. The result is then
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index b2eaea7..8eb5eff 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -5497,7 +5497,7 @@ if (a < 0 && a < 0) @{ @dots{} @}
@opindex Wlogical-not-parentheses
@opindex Wno-logical-not-parentheses
Warn about logical not used on the left hand side operand of a comparison.
-This option does not warn if the right operand is considered to be a Boolean
+This option does not warn if the right operand is considered to be a boolean
expression. Its purpose is to detect suspicious code like the following:
@smallexample
int a;
diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi
index 996b164..c1015f0 100644
--- a/gcc/doc/md.texi
+++ b/gcc/doc/md.texi
@@ -700,7 +700,7 @@ predicates used with @code{match_operand} have names that end in
@samp{_operand}, and those used with @code{match_operator} have names
that end in @samp{_operator}.
-All predicates are Boolean functions (in the mathematical sense) of
+All predicates are boolean functions (in the mathematical sense) of
two arguments: the RTL expression that is being considered at that
position in the instruction pattern, and the machine mode that the
@code{match_operand} or @code{match_operator} specifies. In this
@@ -4274,7 +4274,7 @@ constraint. Docstrings are explained further below.
@end deffn
Non-register constraints are more like predicates: the constraint
-definition gives a Boolean expression which indicates whether the
+definition gives a boolean expression which indicates whether the
constraint matches.
@deffn {MD Expression} define_constraint name docstring exp
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi
index 98a6a97..dc5bcd6 100644
--- a/gcc/doc/tm.texi
+++ b/gcc/doc/tm.texi
@@ -1891,7 +1891,7 @@ This hook may conditionally modify five variables
@code{fixed_regs}, @code{call_used_regs}, @code{global_regs},
@code{reg_names}, and @code{reg_class_contents}, to take into account
any dependence of these register sets on target flags. The first three
-of these are of type @code{char []} (interpreted as Boolean vectors).
+of these are of type @code{char []} (interpreted as boolean vectors).
@code{global_regs} is a @code{const char *[]}, and
@code{reg_class_contents} is a @code{HARD_REG_SET}. Before the macro is
called, @code{fixed_regs}, @code{call_used_regs},
diff --git a/gcc/target.def b/gcc/target.def
index 8d80448..8509e7d 100644
--- a/gcc/target.def
+++ b/gcc/target.def
@@ -5340,7 +5340,7 @@ DEFHOOK
@code{fixed_regs}, @code{call_used_regs}, @code{global_regs},\n\
@code{reg_names}, and @code{reg_class_contents}, to take into account\n\
any dependence of these register sets on target flags. The first three\n\
-of these are of type @code{char []} (interpreted as Boolean vectors).\n\
+of these are of type @code{char []} (interpreted as boolean vectors).\n\
@code{global_regs} is a @code{const char *[]}, and\n\
@code{reg_class_contents} is a @code{HARD_REG_SET}. Before the macro is\n\
called, @code{fixed_regs}, @code{call_used_regs},\n\