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

Dan Gohman djg at cray.com
Thu Aug 2 14:32:20 PDT 2007


> Log:
> wrap some long lines.  Major offenders that are left include
> gvn, gvnpre, dse, and predsimplify.  To see these, use:
> 
>   make check-line-length

[...]

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

Dan

-- 
Dan Gohman, Cray Inc.



More information about the llvm-commits mailing list