commit | 03dc7d717c6372b0c310e05d2cfff119e2d0fd64 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Thu Aug 02 16:53:43 2007 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Thu Aug 02 16:53:43 2007 +0000 |
tree | 8ea26cc892c646ba3d48a0c00ff98e843cc1e580 | |
parent | 0ea2da100b0905fdc722dd8c95193194db80a5c2 [diff] [blame] |
wrap some long lines. Major offenders that are left include gvn, gvnpre, dse, and predsimplify. To see these, use: make check-line-length git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40738 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/lib/Transforms/Scalar/ScalarReplAggregates.cpp index 52edcb6..98fc399 100644 --- a/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/lib/Transforms/Scalar/ScalarReplAggregates.cpp
@@ -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; }