mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
temporarily disable memset formation from memsets in an effort to restore buildbot stability.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123144 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -517,6 +517,9 @@ bool MemCpyOpt::processStore(StoreInst *SI, BasicBlock::iterator &BBI) {
|
||||
}
|
||||
|
||||
bool MemCpyOpt::processMemSet(MemSetInst *MSI, BasicBlock::iterator &BBI) {
|
||||
// Temporarily disable this.
|
||||
return false;
|
||||
|
||||
// See if there is another memset or store neighboring this memset which
|
||||
// allows us to widen out the memset to do a single larger store.
|
||||
if (isa<ConstantInt>(MSI->getLength()) && !MSI->isVolatile())
|
||||
|
Reference in New Issue
Block a user