[PATCH] D38711: typos in documentation?
Phabricator via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 9 16:45:28 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL315252: Fix typos in documentation (authored by jkorous).
Changed prior to commit:
https://reviews.llvm.org/D38711?vs=118295&id=118296#toc
Repository:
rL LLVM
https://reviews.llvm.org/D38711
Files:
cfe/trunk/docs/InternalsManual.rst
Index: cfe/trunk/docs/InternalsManual.rst
===================================================================
--- cfe/trunk/docs/InternalsManual.rst
+++ cfe/trunk/docs/InternalsManual.rst
@@ -1540,7 +1540,7 @@
After trying several different approaches, we've finally converged on a design
(Note, at the time of this writing, not all of this has been implemented,
consider this a design goal!). Our basic approach is to define a single
-recursive method evaluation method (``Expr::Evaluate``), which is implemented
+recursive evaluation method (``Expr::Evaluate``), which is implemented
in ``AST/ExprConstant.cpp``. Given an expression with "scalar" type (integer,
fp, complex, or pointer) this method returns the following information:
@@ -2037,7 +2037,7 @@
* ``CodeGenFunction`` contains functions ``ConvertType`` and
``ConvertTypeForMem`` that convert Clang's types (``clang::Type*`` or
``clang::QualType``) to LLVM types. Use the former for values, and the
- later for memory locations: test with the C++ "``bool``" type to check
+ latter for memory locations: test with the C++ "``bool``" type to check
this. If you find that you are having to use LLVM bitcasts to make the
subexpressions of your expression have the type that your expression
expects, STOP! Go fix semantic analysis and the AST so that you don't
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D38711.118296.patch
Type: text/x-patch
Size: 1371 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20171009/275260ac/attachment.bin>
More information about the cfe-commits
mailing list