diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-01-13 16:30:44 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-01-13 16:30:44 +0000 |
commit | bf83f9aaf238a9f77d4219ecdc00d7fa2c6af539 (patch) | |
tree | 8768b5dd6ea902cadc93446a37e9c42da4713f9b /llvm/docs | |
parent | 2df06baf020c8c6bc9257ea30363d1e1290ef047 (diff) | |
download | bcm5719-llvm-bf83f9aaf238a9f77d4219ecdc00d7fa2c6af539.tar.gz bcm5719-llvm-bf83f9aaf238a9f77d4219ecdc00d7fa2c6af539.zip |
fix typo
llvm-svn: 257611
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/AliasAnalysis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/AliasAnalysis.rst b/llvm/docs/AliasAnalysis.rst index fe7fcbd4bc5..e69dafd81a8 100644 --- a/llvm/docs/AliasAnalysis.rst +++ b/llvm/docs/AliasAnalysis.rst @@ -634,7 +634,7 @@ transformations: * It uses mod/ref information to hoist function calls out of loops that do not write to memory and are loop-invariant. -* If uses alias information to promote memory objects that are loaded and stored +* It uses alias information to promote memory objects that are loaded and stored to in loops to live in a register instead. It can do this if there are no may aliases to the loaded/stored memory location. |