| Index: src/arm/assembler-arm.cc
|
| diff --git a/src/arm/assembler-arm.cc b/src/arm/assembler-arm.cc
|
| index 559a164d02151d325af0c66865eb57b5f18d4768..62516e82c9461fdb4314d81b7fbc426c7619f97c 100644
|
| --- a/src/arm/assembler-arm.cc
|
| +++ b/src/arm/assembler-arm.cc
|
| @@ -145,7 +145,10 @@ void CpuFeatures::ProbeImpl(bool cross_compile) {
|
| if (cpu.implementer() == base::CPU::NVIDIA &&
|
| cpu.variant() == base::CPU::NVIDIA_DENVER &&
|
| cpu.part() <= base::CPU::NVIDIA_DENVER_V10) {
|
| - supported_ |= 1u << COHERENT_CACHE;
|
| + // TODO(jkummerow): This is turned off as an experiment to see if it
|
| + // affects crash rates. Keep an eye on crash reports and either remove
|
| + // coherent cache support permanently, or re-enable it!
|
| + // supported_ |= 1u << COHERENT_CACHE;
|
| }
|
| #endif
|
|
|
|
|