forked from OSchip/llvm-project
[PowerPC] turn off chain commoning by default.
This commit is contained in:
parent
2f7366c89d
commit
eeed1545b2
|
@ -125,7 +125,7 @@ static cl::opt<bool> PreferUpdateForm("ppc-formprep-prefer-update",
|
|||
cl::desc("prefer update form when ds form is also a update form"));
|
||||
|
||||
static cl::opt<bool> EnableChainCommoning(
|
||||
"ppc-formprep-chain-commoning", cl::init(true), cl::Hidden,
|
||||
"ppc-formprep-chain-commoning", cl::init(false), cl::Hidden,
|
||||
cl::desc("Enable chain commoning in PPC loop prepare pass."));
|
||||
|
||||
// Sum of following 3 per loop thresholds for all loops can not be larger
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||
; RUN: llc -ppc-asm-full-reg-names -verify-machineinstrs \
|
||||
; RUN: llc -ppc-asm-full-reg-names -verify-machineinstrs -ppc-formprep-chain-commoning \
|
||||
; RUN: -mtriple=powerpc-ibm-aix-xcoff -mcpu=pwr9 < %s | FileCheck %s
|
||||
|
||||
; Test that on 32 bit AIX, the chain commoning still works without crash.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||
; RUN: llc -ppc-asm-full-reg-names -verify-machineinstrs \
|
||||
; RUN: llc -ppc-asm-full-reg-names -verify-machineinstrs -ppc-formprep-chain-commoning \
|
||||
; RUN: -mtriple=powerpc64le-unknown-linux-gnu -mcpu=pwr9 < %s | FileCheck %s
|
||||
|
||||
; addresses:
|
||||
|
|
Loading…
Reference in New Issue