[llvm-commits] [llvm] r167378 - in /llvm/trunk: docs/CodeGenerator.rst include/llvm/Target/TargetLowering.h

Eli Bendersky eliben at google.com
Sun Nov 4 18:59:23 PST 2012


Author: eliben
Date: Sun Nov  4 20:59:23 2012
New Revision: 167378

URL: http://llvm.org/viewvc/llvm-project?rev=167378&view=rev
Log:
PR14256: SelectionDAGLowering was renamed to SelectionDAGBuilder a long time ago.  Fix references to it in documentation and comments.


Modified:
    llvm/trunk/docs/CodeGenerator.rst
    llvm/trunk/include/llvm/Target/TargetLowering.h

Modified: llvm/trunk/docs/CodeGenerator.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodeGenerator.rst?rev=167378&r1=167377&r2=167378&view=diff
==============================================================================
--- llvm/trunk/docs/CodeGenerator.rst (original)
+++ llvm/trunk/docs/CodeGenerator.rst Sun Nov  4 20:59:23 2012
@@ -838,8 +838,7 @@
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 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

Modified: llvm/trunk/include/llvm/Target/TargetLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetLowering.h?rev=167378&r1=167377&r2=167378&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetLowering.h (original)
+++ llvm/trunk/include/llvm/Target/TargetLowering.h Sun Nov  4 20:59:23 2012
@@ -1264,7 +1264,7 @@
 public:
   //===--------------------------------------------------------------------===//
   // Lowering methods - These methods must be implemented by targets so that
-  // the SelectionDAGLowering code knows how to lower these.
+  // the SelectionDAGBuilder code knows how to lower these.
   //
 
   /// LowerFormalArguments - This hook must be implemented to lower the





More information about the llvm-commits mailing list