aboutsummaryrefslogtreecommitdiffstats
path: root/docs/ProgrammersManual.html
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2007-12-03 01:52:52 +0000
committerNick Lewycky <nicholas@mxc.ca>2007-12-03 01:52:52 +0000
commitc004e5b7151021ca52cd8e40c35dc2cda5b5e5bd (patch)
tree45942c5e84c334478b3bde8f9bc03290f3fc5103 /docs/ProgrammersManual.html
parent8e8234468a40ab53cc4172724fb8d06449b78c70 (diff)
downloadexternal_llvm-c004e5b7151021ca52cd8e40c35dc2cda5b5e5bd.zip
external_llvm-c004e5b7151021ca52cd8e40c35dc2cda5b5e5bd.tar.gz
external_llvm-c004e5b7151021ca52cd8e40c35dc2cda5b5e5bd.tar.bz2
Type::IntTy hasn't existed for a while. Just sub in Type::Int32Ty.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44526 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r--docs/ProgrammersManual.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 792dbf0..66bca9b 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -1742,7 +1742,7 @@ parameters. For example, an <tt>AllocaInst</tt> only <i>requires</i> a
<div class="doc_code">
<pre>
-AllocaInst* ai = new AllocaInst(Type::IntTy);
+AllocaInst* ai = new AllocaInst(Type::Int32Ty);
</pre>
</div>
@@ -1770,7 +1770,7 @@ used as some kind of index by some other code. To accomplish this, I place an
<div class="doc_code">
<pre>
-AllocaInst* pa = new AllocaInst(Type::IntTy, 0, "indexLoc");
+AllocaInst* pa = new AllocaInst(Type::Int32Ty, 0, "indexLoc");
</pre>
</div>
@@ -1922,7 +1922,7 @@ AllocaInst* instToReplace = ...;
BasicBlock::iterator ii(instToReplace);
ReplaceInstWithValue(instToReplace-&gt;getParent()-&gt;getInstList(), ii,
- Constant::getNullValue(PointerType::get(Type::IntTy)));
+ Constant::getNullValue(PointerType::get(Type::Int32Ty)));
</pre></div></li>
<li><tt>ReplaceInstWithInst</tt>
@@ -1937,7 +1937,7 @@ AllocaInst* instToReplace = ...;
BasicBlock::iterator ii(instToReplace);
ReplaceInstWithInst(instToReplace-&gt;getParent()-&gt;getInstList(), ii,
- new AllocaInst(Type::IntTy, 0, "ptrToReplacedInt"));
+ new AllocaInst(Type::Int32Ty, 0, "ptrToReplacedInt"));
</pre></div></li>
</ul>
@@ -2056,7 +2056,7 @@ To build this, use the following LLVM APIs:
<a href="#PATypeHolder">PATypeHolder</a> StructTy = OpaqueType::get();
std::vector&lt;const Type*&gt; Elts;
Elts.push_back(PointerType::get(StructTy));
-Elts.push_back(Type::IntTy);
+Elts.push_back(Type::Int32Ty);
StructType *NewSTy = StructType::get(Elts);
// <i>At this point, NewSTy = "{ opaque*, i32 }". Tell VMCore that</i>