[llvm-commits] [llvm] r123062 - /llvm/trunk/lib/Transforms/Scalar/LoopInstSimplify.cpp
Frits van Bommel
fvbommel at gmail.com
Sat Jan 8 08:05:27 PST 2011
On Sat, Jan 8, 2011 at 4:52 PM, Cameron Zwarich <zwarich at apple.com> wrote:
> - BasicBlock *BB = VisitStack.pop_back_val();
> + WorklistItem Item = VisitStack.pop_back_val();
> + BasicBlock* BB = Item.getPointer();
The usual LLVM style is to have the '*' attached to the identifier
instead of the pointee type, so 'BasicBlock* BB' --> 'BasicBlock *BB'
(like it was before).
More information about the llvm-commits
mailing list