diff options
author | David Majnemer <david.majnemer@gmail.com> | 2016-06-15 00:19:09 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2016-06-15 00:19:09 +0000 |
commit | cbf614a93b1d59655e7749df1a31b5cb4ac29972 (patch) | |
tree | a0d51e49d1cbbd68dfe38d44436e0d0e6538fdc9 /llvm/docs/tutorial | |
parent | f42c69206d6bee89cbd3c5f8eb502131b234422c (diff) | |
download | bcm5719-llvm-cbf614a93b1d59655e7749df1a31b5cb4ac29972.tar.gz bcm5719-llvm-cbf614a93b1d59655e7749df1a31b5cb4ac29972.zip |
Remove the ScalarReplAggregates pass
Nearly all the changes to this pass have been done while maintaining and
updating other parts of LLVM. LLVM has had another pass, SROA, which
has superseded ScalarReplAggregates for quite some time.
Differential Revision: http://reviews.llvm.org/D21316
llvm-svn: 272737
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/LangImpl7.rst | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl7.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/LangImpl7.rst b/llvm/docs/tutorial/LangImpl7.rst index efc38f62b57..68a86eda8a7 100644 --- a/llvm/docs/tutorial/LangImpl7.rst +++ b/llvm/docs/tutorial/LangImpl7.rst @@ -224,7 +224,7 @@ variables in certain circumstances: class <../LangRef.html#first-class-types>`_ values (such as pointers, scalars and vectors), and only if the array size of the allocation is 1 (or missing in the .ll file). mem2reg is not capable of promoting - structs or arrays to registers. Note that the "scalarrepl" pass is + structs or arrays to registers. Note that the "sroa" pass is more powerful and can promote structs, "unions", and arrays in many cases. diff --git a/llvm/docs/tutorial/OCamlLangImpl7.rst b/llvm/docs/tutorial/OCamlLangImpl7.rst index c8c701b9101..f36845c5234 100644 --- a/llvm/docs/tutorial/OCamlLangImpl7.rst +++ b/llvm/docs/tutorial/OCamlLangImpl7.rst @@ -224,7 +224,7 @@ variables in certain circumstances: class <../LangRef.html#first-class-types>`_ values (such as pointers, scalars and vectors), and only if the array size of the allocation is 1 (or missing in the .ll file). mem2reg is not capable of promoting - structs or arrays to registers. Note that the "scalarrepl" pass is + structs or arrays to registers. Note that the "sroa" pass is more powerful and can promote structs, "unions", and arrays in many cases. |