diff options
author | Nirav Dave <niravd@google.com> | 2017-02-02 18:24:55 +0000 |
---|---|---|
committer | Nirav Dave <niravd@google.com> | 2017-02-02 18:24:55 +0000 |
commit | 93f9d5ce0465d40b77af11b63adc8eb61429dddb (patch) | |
tree | af72812886770674bf148c7b2d74d9ba44eb3094 /llvm/lib/CodeGen/TargetLoweringBase.cpp | |
parent | 827600deaf7b35ca55bcee4e2b226bb669aaf299 (diff) | |
download | bcm5719-llvm-93f9d5ce0465d40b77af11b63adc8eb61429dddb.tar.gz bcm5719-llvm-93f9d5ce0465d40b77af11b63adc8eb61429dddb.zip |
Revert "In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled."
This reverts commit r293893 which is miscompiling lua on ARM and
bootstrapping for x86-windows.
llvm-svn: 293915
Diffstat (limited to 'llvm/lib/CodeGen/TargetLoweringBase.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TargetLoweringBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringBase.cpp b/llvm/lib/CodeGen/TargetLoweringBase.cpp index 9b8d48fd4d4..f18cdca4861 100644 --- a/llvm/lib/CodeGen/TargetLoweringBase.cpp +++ b/llvm/lib/CodeGen/TargetLoweringBase.cpp @@ -851,7 +851,7 @@ TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm) : TM(tm) { MinFunctionAlignment = 0; PrefFunctionAlignment = 0; PrefLoopAlignment = 0; - GatherAllAliasesMaxDepth = 18; + GatherAllAliasesMaxDepth = 6; MinStackArgumentAlignment = 1; // TODO: the default will be switched to 0 in the next commit, along // with the Target-specific changes necessary. |