[cfe-commits] r160763 - in /cfe/trunk/docs: AutomaticReferenceCounting.html InternalsManual.html
Sylvestre Ledru
sylvestre at debian.org
Wed Jul 25 15:02:37 PDT 2012
Author: sylvestre
Date: Wed Jul 25 17:02:37 2012
New Revision: 160763
URL: http://llvm.org/viewvc/llvm-project?rev=160763&view=rev
Log:
Fix two typos in the doc
Modified:
cfe/trunk/docs/AutomaticReferenceCounting.html
cfe/trunk/docs/InternalsManual.html
Modified: cfe/trunk/docs/AutomaticReferenceCounting.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/AutomaticReferenceCounting.html?rev=160763&r1=160762&r2=160763&view=diff
==============================================================================
--- cfe/trunk/docs/AutomaticReferenceCounting.html (original)
+++ cfe/trunk/docs/AutomaticReferenceCounting.html Wed Jul 25 17:02:37 2012
@@ -313,7 +313,7 @@
<ul>
<li>The type system must reliably identify which objects are to be
managed. An <tt>int*</tt> might be a pointer to a <tt>malloc</tt>'ed
-array, or it might be a interior pointer to such an array, or it might
+array, or it might be an interior pointer to such an array, or it might
point to some field or local variable. In contrast, values of the
retainable object pointer types are never interior.</li>
<li>The type system must reliably indicate how to
Modified: cfe/trunk/docs/InternalsManual.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/InternalsManual.html?rev=160763&r1=160762&r2=160763&view=diff
==============================================================================
--- cfe/trunk/docs/InternalsManual.html (original)
+++ cfe/trunk/docs/InternalsManual.html Wed Jul 25 17:02:37 2012
@@ -1704,7 +1704,7 @@
<li><b><tt>__extension__</tt></b>: The expression form of this extension causes
any evaluatable subexpression to be accepted as an integer constant
expression.</li>
-<li><b><tt>__builtin_constant_p</tt></b>: This returns true (as a integer
+<li><b><tt>__builtin_constant_p</tt></b>: This returns true (as an integer
constant expression) if the operand evaluates to either a numeric value
(that is, not a pointer cast to integral type) of integral, enumeration,
floating or complex type, or if it evaluates to the address of the first
More information about the cfe-commits
mailing list