[llvm-commits] [llvm] r40738 - in /llvm/trunk/lib/Transforms/Scalar: CodeGenPrepare.cpp InstructionCombining.cpp LoopStrengthReduce.cpp LoopUnroll.cpp LoopUnswitch.cpp RedundantLoadElimination.cpp ScalarReplAggregates.cpp

Chris Lattner clattner at apple.com
Thu Aug 2 14:33:57 PDT 2007


On Aug 2, 2007, at 2:32 PM, Dan Gohman wrote:

>> --- llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp  
>> (original)
>> +++ llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp Thu  
>> Aug  2 11:53:43 2007
>> @@ -50,7 +50,7 @@
>>      static char ID; // Pass identification, replacement for typeid
>>      explicit SROA(signed T = -1) : FunctionPass((intptr_t)&ID) {
>>        if (T == -1)
>> -        SRThreshold = 128;
>> +        SRThreshold = 512;
>>        else
>>          SRThreshold = T;
>>      }
>
> The original line there was within 80 cols ;-).

Whoa.  Thank you so much for catching that!

-Chris



More information about the llvm-commits mailing list