@@ -3736,13 +3736,6 @@ Important Subclasses of the ``Instruction`` class
3736
3736
`ICmpInst <LangRef.html#i_icmp >`_ (integer opreands), and
3737
3737
`FCmpInst <LangRef.html#i_fcmp >`_ (floating point operands).
3738
3738
3739
- .. _TerminatorInst :
3740
-
3741
- * ``TerminatorInst ``
3742
-
3743
- This subclass is the parent of all terminator instructions (those which can
3744
- terminate a block).
3745
-
3746
3739
.. _m_Instruction :
3747
3740
3748
3741
Important Public Members of the ``Instruction `` class
@@ -4068,7 +4061,7 @@ This class represents a single entry single exit section of the code, commonly
4068
4061
known as a basic block by the compiler community. The ``BasicBlock `` class
4069
4062
maintains a list of Instruction _\ s, which form the body of the block. Matching
4070
4063
the language definition, the last element of this list of instructions is always
4071
- a terminator instruction (a subclass of the TerminatorInst _ class) .
4064
+ a terminator instruction.
4072
4065
4073
4066
In addition to tracking the list of instructions that make up the block, the
4074
4067
``BasicBlock `` class also keeps track of the :ref: `Function <c_Function >` that
@@ -4119,7 +4112,7 @@ Important Public Members of the ``BasicBlock`` class
4119
4112
Returns a pointer to :ref: `Function <c_Function >` the block is embedded into,
4120
4113
or a null pointer if it is homeless.
4121
4114
4122
- * ``TerminatorInst *getTerminator() ``
4115
+ * ``Instruction *getTerminator() ``
4123
4116
4124
4117
Returns a pointer to the terminator instruction that appears at the end of the
4125
4118
``BasicBlock ``. If there is no terminator instruction, or if the last
0 commit comments