diff options
author | Eli Bendersky <eliben@google.com> | 2012-11-05 02:59:23 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2012-11-05 02:59:23 +0000 |
commit | 87a1af4380da3d69d7d97d6ccda6843b565f7e34 (patch) | |
tree | e347dc1fad8a5b8e4b2ccb67ca92db0493a98d8e /docs/CodeGenerator.rst | |
parent | db2b2852256aba368cf6e75e049773768d159890 (diff) |
PR14256: SelectionDAGLowering was renamed to SelectionDAGBuilder a long time ago. Fix references to it in documentation and comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167378 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodeGenerator.rst')
-rw-r--r-- | docs/CodeGenerator.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/CodeGenerator.rst b/docs/CodeGenerator.rst index 37a2eccd2a..5fab76ec1a 100644 --- a/docs/CodeGenerator.rst +++ b/docs/CodeGenerator.rst @@ -838,8 +838,7 @@ Initial SelectionDAG Construction ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The initial SelectionDAG is na\ :raw-html:`ï`\ vely peephole expanded from -the LLVM input by the ``SelectionDAGLowering`` class in the -``lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp`` file. The intent of this pass +the LLVM input by the ``SelectionDAGBuilder`` class. The intent of this pass is to expose as much low-level, target-specific details to the SelectionDAG as possible. This pass is mostly hard-coded (e.g. an LLVM ``add`` turns into an ``SDNode add`` while a ``getelementptr`` is expanded into the obvious |