mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
"fix" coding style stuff
Change some <>'s into <>'s git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7623 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5e8b77e375
commit
7496ec51b8
@ -244,7 +244,7 @@ static bool isLoopInvariant(const <a href="#Value">Value</a> *V, const Loop *L)
|
||||
return true;
|
||||
|
||||
<i>// Otherwise, it must be an instruction...</i>
|
||||
return !L->contains(cast<<a href="#Instruction">Instruction</a>>(V)->getParent());
|
||||
return !L->contains(cast<<a href="#Instruction">Instruction</a>>(V)->getParent());
|
||||
</pre><p>
|
||||
|
||||
Note that you should <b>not</b> use an <tt>isa<></tt> test followed by a
|
||||
@ -275,7 +275,7 @@ Another common example is:<p>
|
||||
|
||||
<pre>
|
||||
<i>// Loop over all of the phi nodes in a basic block</i>
|
||||
BasicBlock::iterator BBI = BB->begin();
|
||||
BasicBlock::iterator BBI = BB->begin();
|
||||
for (; <a href="#PhiNode">PHINode</a> *PN = dyn_cast<<a href="#PHINode">PHINode</a>>(BBI); ++BBI)
|
||||
cerr << *PN;
|
||||
</pre><p>
|
||||
@ -560,7 +560,7 @@ contains:
|
||||
|
||||
<pre>
|
||||
// func is a pointer to a Function instance
|
||||
for(Function::iterator i = func->begin(), e = func->end(); i != e; ++i) {
|
||||
for (Function::iterator i = func->begin(), e = func->end(); i != e; ++i) {
|
||||
|
||||
// print out the name of the basic block if it has one, and then the
|
||||
// number of instructions that it contains
|
||||
@ -573,7 +573,7 @@ contains:
|
||||
Note that i can be used as if it were a pointer for the purposes of
|
||||
invoking member functions of the <tt>Instruction</tt> class. This is
|
||||
because the indirection operator is overloaded for the iterator
|
||||
classes. In the above code, the expression <tt>i->size()</tt> is
|
||||
classes. In the above code, the expression <tt>i->size()</tt> is
|
||||
exactly equivalent to <tt>(*i).size()</tt> just like you'd expect.
|
||||
|
||||
<!-- _______________________________________________________________________ -->
|
||||
@ -683,7 +683,7 @@ over some structure:
|
||||
void printNextInstruction(Instruction* inst) {
|
||||
BasicBlock::iterator it(inst);
|
||||
++it; // after this line, it refers to the instruction after *inst.
|
||||
if(it != inst->getParent()->end()) cerr << *it << "\n";
|
||||
if (it != inst->getParent()->end()) cerr << *it << "\n";
|
||||
}
|
||||
</pre>
|
||||
Of course, this example is strictly pedagogical, because it'd be much
|
||||
@ -864,7 +864,7 @@ we wish to insert before <tt>*pi</tt>, we do the following:
|
||||
BasicBlock *pb = ...;
|
||||
Instruction *pi = ...;
|
||||
Instruction *newInst = new Instruction(...);
|
||||
pb->getInstList().insert(pi, newInst); // inserts newInst before pi in pb
|
||||
pb->getInstList().insert(pi, newInst); // inserts newInst before pi in pb
|
||||
</pre>
|
||||
</p>
|
||||
|
||||
@ -877,7 +877,7 @@ without being given a <tt>BasicBlock</tt> by doing:
|
||||
<pre>
|
||||
Instruction *pi = ...;
|
||||
Instruction *newInst = new Instruction(...);
|
||||
pi->getParent()->getInstList().insert(pi, newInst);
|
||||
pi->getParent()->getInstList().insert(pi, newInst);
|
||||
</pre>
|
||||
In fact, this sequence of steps occurs so frequently that the
|
||||
<tt>Instruction</tt> class and <tt>Instruction</tt>-derived classes
|
||||
@ -1689,11 +1689,11 @@ Important Subclasses of Constant<p>
|
||||
</ul>
|
||||
<li>ConstantArray : This represents a constant array.
|
||||
<ul>
|
||||
<li><tt>const std::vector<Use> &getValues() const</tt>: Returns a Vecotr of component constants that makeup this array.
|
||||
<li><tt>const std::vector<Use> &getValues() const</tt>: Returns a Vecotr of component constants that makeup this array.
|
||||
</ul>
|
||||
<li>ConstantStruct : This represents a constant struct.
|
||||
<ul>
|
||||
<li><tt>const std::vector<Use> &getValues() const</tt>: Returns a Vecotr of component constants that makeup this array.
|
||||
<li><tt>const std::vector<Use> &getValues() const</tt>: Returns a Vecotr of component constants that makeup this array.
|
||||
</ul>
|
||||
<li>ConstantPointerRef : This represents a constant pointer value that is initialized to point to a global value, which lies at a constant fixed address.
|
||||
<ul>
|
||||
@ -1789,6 +1789,6 @@ pointer to the parent Function.
|
||||
<a href="mailto:sabre@nondot.org">Chris Lattner</a></address>
|
||||
<!-- Created: Tue Aug 6 15:00:33 CDT 2002 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri Aug 1 17:26:10 CDT 2003
|
||||
Last modified: Tue Aug 5 17:53:43 CDT 2003
|
||||
<!-- hhmts end -->
|
||||
</font></body></html>
|
||||
|
Loading…
Reference in New Issue
Block a user