summaryrefslogtreecommitdiff
path: root/lib/CodeGen/TargetLoweringBase.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-04-21 07:11:15 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-04-21 07:11:15 +0000
commit81549a0a3907f7e49f4f49bdfdadc313cf61025a (patch)
tree18e6fe174a3449ce55dd4a40c2b1bcefa1948c2c /lib/CodeGen/TargetLoweringBase.cpp
parent215fc7d9988bda6ae21370def427aaa81349a34a (diff)
downloadllvm-81549a0a3907f7e49f4f49bdfdadc313cf61025a.tar.gz
llvm-81549a0a3907f7e49f4f49bdfdadc313cf61025a.tar.bz2
llvm-81549a0a3907f7e49f4f49bdfdadc313cf61025a.tar.xz
Revert r206732 which is causing llc to crash on most of the build bots.
Original commit message: Implement builtins for safe division: safe.sdiv.iN, safe.udiv.iN, safe.srem.iN, safe.urem.iN (iN = i8, i61, i32, or i64). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206735 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TargetLoweringBase.cpp')
-rw-r--r--lib/CodeGen/TargetLoweringBase.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/TargetLoweringBase.cpp b/lib/CodeGen/TargetLoweringBase.cpp
index 4ed20d0270..c1a47751eb 100644
--- a/lib/CodeGen/TargetLoweringBase.cpp
+++ b/lib/CodeGen/TargetLoweringBase.cpp
@@ -682,7 +682,6 @@ TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm,
HasMultipleConditionRegisters = false;
IntDivIsCheap = false;
Pow2DivIsCheap = false;
- DivIsWellDefined = false;
JumpIsExpensive = false;
PredictableSelectIsExpensive = false;
MaskAndBranchFoldingIsLegal = false;