diff options
Diffstat (limited to 'llvm/lib/Target/ARM/ARMISelLowering.cpp')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index d3cf6675f29..e06846559c3 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp @@ -288,7 +288,10 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)    setIfCvtDupBlockSizeLimit(Subtarget->isThumb() ? 0 : 2);    maxStoresPerMemcpy = 1;   //// temporary - rewrite interface to use type -  benefitFromCodePlacementOpt = true; +  // Do not enable CodePlacementOpt for now: it currently runs after the +  // ARMConstantIslandPass and messes up branch relaxation and placement +  // of constant islands. +  // benefitFromCodePlacementOpt = true;  }  const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const { | 

