[llvm-commits] [llvm] r123062 - /llvm/trunk/lib/Transforms/Scalar/LoopInstSimplify.cpp

Cameron Zwarich zwarich at apple.com
Sat Jan 8 08:23:19 PST 2011


On Jan 8, 2011, at 8:05 AM, Frits van Bommel wrote:

> 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).

Thanks. I changed this file to match that style, but I must have had this patch in motion.

Cameron



More information about the llvm-commits mailing list