Update comment.
llvm-svn: 145866
This commit is contained in:
parent
19446a07a7
commit
3277557741
@ -147,7 +147,7 @@ struct MemsetRange {
|
||||
} // end anon namespace
|
||||
|
||||
bool MemsetRange::isProfitableToUseMemset(const TargetData &TD) const {
|
||||
// If we found more than 8 stores to merge or 64 bytes, use memset.
|
||||
// If we found more than 4 stores to merge or 16 bytes, use memset.
|
||||
if (TheStores.size() >= 4 || End-Start >= 16) return true;
|
||||
|
||||
// If there is nothing to merge, don't do anything.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user