Docuemntation corrections from John Myers.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99454 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2010-03-25 00:03:04 +00:00
parent d41952da10
commit 6a4824c466
3 changed files with 7 additions and 7 deletions

View File

@@ -1090,8 +1090,8 @@ def FADDS : AForm_2<59, 21,
<p>The portion of the instruction definition in bold indicates the pattern used <p>The portion of the instruction definition in bold indicates the pattern used
to match the instruction. The DAG operators to match the instruction. The DAG operators
(like <tt>fmul</tt>/<tt>fadd</tt>) are defined in (like <tt>fmul</tt>/<tt>fadd</tt>) are defined in
the <tt>lib/Target/TargetSelectionDAG.td</tt> file. "<tt>F4RC</tt>" is the the <tt>include/llvm/Target/TargetSelectionDAG.td</tt> file. "
register class of the input and result values.</p> <tt>F4RC</tt>" is the register class of the input and result values.</p>
<p>The TableGen DAG instruction selector generator reads the instruction <p>The TableGen DAG instruction selector generator reads the instruction
patterns in the <tt>.td</tt> file and automatically builds parts of the patterns in the <tt>.td</tt> file and automatically builds parts of the

View File

@@ -88,7 +88,7 @@ class TargetAsmBackend;
/// @name Symbol & Section Management /// @name Symbol & Section Management
/// @{ /// @{
/// getCurrentSection - Return the current seciton that the streamer is /// getCurrentSection - Return the current section that the streamer is
/// emitting code to. /// emitting code to.
const MCSection *getCurrentSection() const { return CurSection; } const MCSection *getCurrentSection() const { return CurSection; }

View File

@@ -967,7 +967,7 @@ protected:
} }
/// setLoadExtAction - Indicate that the specified load with extension does /// setLoadExtAction - Indicate that the specified load with extension does
/// not work with the with specified type and indicate what to do about it. /// not work with the specified type and indicate what to do about it.
void setLoadExtAction(unsigned ExtType, MVT VT, void setLoadExtAction(unsigned ExtType, MVT VT,
LegalizeAction Action) { LegalizeAction Action) {
assert((unsigned)VT.SimpleTy*2 < 63 && assert((unsigned)VT.SimpleTy*2 < 63 &&
@@ -978,7 +978,7 @@ protected:
} }
/// setTruncStoreAction - Indicate that the specified truncating store does /// setTruncStoreAction - Indicate that the specified truncating store does
/// not work with the with specified type and indicate what to do about it. /// not work with the specified type and indicate what to do about it.
void setTruncStoreAction(MVT ValVT, MVT MemVT, void setTruncStoreAction(MVT ValVT, MVT MemVT,
LegalizeAction Action) { LegalizeAction Action) {
assert((unsigned)ValVT.SimpleTy < array_lengthof(TruncStoreActions) && assert((unsigned)ValVT.SimpleTy < array_lengthof(TruncStoreActions) &&
@@ -989,7 +989,7 @@ protected:
} }
/// setIndexedLoadAction - Indicate that the specified indexed load does or /// setIndexedLoadAction - Indicate that the specified indexed load does or
/// does not work with the with specified type and indicate what to do abort /// does not work with the specified type and indicate what to do abort
/// it. NOTE: All indexed mode loads are initialized to Expand in /// it. NOTE: All indexed mode loads are initialized to Expand in
/// TargetLowering.cpp /// TargetLowering.cpp
void setIndexedLoadAction(unsigned IdxMode, MVT VT, void setIndexedLoadAction(unsigned IdxMode, MVT VT,
@@ -1001,7 +1001,7 @@ protected:
} }
/// setIndexedStoreAction - Indicate that the specified indexed store does or /// setIndexedStoreAction - Indicate that the specified indexed store does or
/// does not work with the with specified type and indicate what to do about /// does not work with the specified type and indicate what to do about
/// it. NOTE: All indexed mode stores are initialized to Expand in /// it. NOTE: All indexed mode stores are initialized to Expand in
/// TargetLowering.cpp /// TargetLowering.cpp
void setIndexedStoreAction(unsigned IdxMode, MVT VT, void setIndexedStoreAction(unsigned IdxMode, MVT VT,