diff options
author | Paul Robinson <paul_robinson@playstation.sony.com> | 2013-11-14 18:47:23 +0000 |
---|---|---|
committer | Paul Robinson <paul_robinson@playstation.sony.com> | 2013-11-14 18:47:23 +0000 |
commit | 5cb5ad977b552035c8ff9171182921f45ecb6e1e (patch) | |
tree | 3e369e275200e1be6d8e273991488e9a53f80288 /docs | |
parent | 0f2f62d79dd94169db5df9cd6ec4b9bf359d31f8 (diff) | |
download | external_llvm-5cb5ad977b552035c8ff9171182921f45ecb6e1e.zip external_llvm-5cb5ad977b552035c8ff9171182921f45ecb6e1e.tar.gz external_llvm-5cb5ad977b552035c8ff9171182921f45ecb6e1e.tar.bz2 |
Typos. (Test commit.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194720 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Passes.rst | 2 | ||||
-rw-r--r-- | docs/ProgrammersManual.rst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/Passes.rst b/docs/Passes.rst index d30c3ca..029e472 100644 --- a/docs/Passes.rst +++ b/docs/Passes.rst @@ -476,7 +476,7 @@ transformation obviously invalidates the CFG, but can update forward dominator ------------------------------------------------- This pass munges the code in the input function to better prepare it for -SelectionDAG-based code generation. This works around limitations in it's +SelectionDAG-based code generation. This works around limitations in its basic-block-at-a-time approach. It should eventually be removed. ``-constmerge``: Merge Duplicate Global Constants diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst index 2910a2a..99aa5c7 100644 --- a/docs/ProgrammersManual.rst +++ b/docs/ProgrammersManual.rst @@ -1172,7 +1172,7 @@ The drawback of SetVector is that it requires twice as much space as a normal set and has the sum of constant factors from the set-like container and the sequential container that it uses. Use it **only** if you need to iterate over the elements in a deterministic order. SetVector is also expensive to delete -elements out of (linear time), unless you use it's "pop_back" method, which is +elements out of (linear time), unless you use its "pop_back" method, which is faster. ``SetVector`` is an adapter class that defaults to using ``std::vector`` and a @@ -2080,7 +2080,7 @@ the ``llvm_stop_multithreaded()`` call. You can also use the Note that both of these calls must be made *in isolation*. That is to say that no other LLVM API calls may be executing at any time during the execution of -``llvm_start_multithreaded()`` or ``llvm_stop_multithreaded``. It's is the +``llvm_start_multithreaded()`` or ``llvm_stop_multithreaded``. It is the client's responsibility to enforce this isolation. The return value of ``llvm_start_multithreaded()`` indicates the success or |