[llvm-commits] [llvm] r62269 - in /llvm/trunk: lib/CodeGen/AsmPrinter/DwarfWriter.cpp test/DebugInfo/2009-01-15-RecordVariableCrash.ll

Devang Patel dpatel at apple.com
Fri Jan 16 10:02:09 PST 2009


On Jan 16, 2009, at 1:21 AM, Duncan Sands wrote:

> Hi Devang,
>
>>   DbgScope *Parent;                   // Parent to this scope.
>> -  DIDescriptor *Desc;                 // Debug info descriptor for  
>> scope.
>> +  DIDescriptor Desc;                 // Debug info descriptor for  
>> scope.
>
> misaligned comment.
>
>>   // Accessors.
>>   DbgScope *getParent()        const { return Parent; }
>> -  DIDescriptor *getDesc()       const { return Desc; }
>> +  DIDescriptor getDesc()       const { return Desc; }
>>   unsigned getStartLabelID()     const { return StartLabelID; }
>>   unsigned getEndLabelID()       const { return EndLabelID; }
>
> probably these "const"s all lined up once.

yup. done.
-
Devang






More information about the llvm-commits mailing list