diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-04-04 20:13:08 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2014-04-04 20:13:08 +0000 |
commit | 5e1e4316c4b38314b269d207a1aaddc63dbdb4a6 (patch) | |
tree | 4cb3057f96911f94add7f539ae6aa9e0f3ee1272 /llvm/lib | |
parent | 9dff139025f833da6308b7d89f124556f291e06d (diff) | |
download | bcm5719-llvm-5e1e4316c4b38314b269d207a1aaddc63dbdb4a6.tar.gz bcm5719-llvm-5e1e4316c4b38314b269d207a1aaddc63dbdb4a6.zip |
Fix tabs
llvm-svn: 205648
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/R600/AMDGPUTargetTransformInfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/R600/AMDGPUTargetTransformInfo.cpp b/llvm/lib/Target/R600/AMDGPUTargetTransformInfo.cpp index 51225eb7f88..a240297fc69 100644 --- a/llvm/lib/Target/R600/AMDGPUTargetTransformInfo.cpp +++ b/llvm/lib/Target/R600/AMDGPUTargetTransformInfo.cpp @@ -109,11 +109,11 @@ void AMDGPUTTI::getUnrollingPreferences(Loop *L, // require us to use indirect addressing, which is slow and prone to // compiler bugs. If this loop does an address calculation on an // alloca ptr, then we want to use a higher than normal loop unroll - // threshold. This will give SROA a better chance to eliminate these - // allocas. - // - // Don't use the maximum allowed value here as it will make some - // programs way too big. + // threshold. This will give SROA a better chance to eliminate these + // allocas. + // + // Don't use the maximum allowed value here as it will make some + // programs way too big. UP.Threshold = 500; } } |