[llvm] r241249 - [NFC] Minor editorial fixes to the CodeGen docs.

Charlie Turner charlie.turner at arm.com
Thu Jul 2 02:32:01 PDT 2015


Author: chatur01
Date: Thu Jul  2 04:32:01 2015
New Revision: 241249

URL: http://llvm.org/viewvc/llvm-project?rev=241249&view=rev
Log:
[NFC] Minor editorial fixes to the CodeGen docs.

Modified:
    llvm/trunk/docs/CodeGenerator.rst

Modified: llvm/trunk/docs/CodeGenerator.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodeGenerator.rst?rev=241249&r1=241248&r2=241249&view=diff
==============================================================================
--- llvm/trunk/docs/CodeGenerator.rst (original)
+++ llvm/trunk/docs/CodeGenerator.rst Thu Jul  2 04:32:01 2015
@@ -749,7 +749,7 @@ The SelectionDAG is a Directed-Acyclic-G
 ``SDNode`` class.  The primary payload of the ``SDNode`` is its operation code
 (Opcode) that indicates what operation the node performs and the operands to the
 operation.  The various operation node types are described at the top of the
-``include/llvm/CodeGen/SelectionDAGNodes.h`` file.
+``include/llvm/CodeGen/ISDOpcodes.h`` file.
 
 Although most operations define a single value, each node in the graph may
 define multiple values.  For example, a combined div/rem operation will define
@@ -829,7 +829,7 @@ One great way to visualize what is going
 LLC command line options.  The following options pop up a window displaying the
 SelectionDAG at specific times (if you only get errors printed to the console
 while using this, you probably `need to configure your
-system <ProgrammersManual.html#ViewGraph>`_ to add support for it).
+system <ProgrammersManual.html#viewing-graphs-while-debugging-code>`_ to add support for it).
 
 * ``-view-dag-combine1-dags`` displays the DAG after being built, before the
   first optimization pass.





More information about the llvm-commits mailing list