aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/TargetLoweringBase.cpp
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2019-09-05 15:44:33 +0000
committerGuillaume Chatelet <gchatelet@google.com>2019-09-05 15:44:33 +0000
commitf9f31ce6a906bad7e62829ccfe7701802c97a0b0 (patch)
treeac4ba2e821c01e1bee6e8161dff3826caf918071 /llvm/lib/CodeGen/TargetLoweringBase.cpp
parent886382ff077ac52c6bb4a6dd3d0ceee1f88214a5 (diff)
downloadllvm-f9f31ce6a906bad7e62829ccfe7701802c97a0b0.zip
llvm-f9f31ce6a906bad7e62829ccfe7701802c97a0b0.tar.gz
llvm-f9f31ce6a906bad7e62829ccfe7701802c97a0b0.tar.bz2
[Alignment][NFC] Change internal representation of TargetLowering.h
Summary: This is patch is part of a series to introduce an Alignment type. See this thread for context: http://lists.llvm.org/pipermail/llvm-dev/2019-July/133851.html See this patch for the introduction of the type: https://reviews.llvm.org/D64790 Reviewers: courbet Subscribers: hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D67226 llvm-svn: 371082
Diffstat (limited to 'llvm/lib/CodeGen/TargetLoweringBase.cpp')
-rw-r--r--llvm/lib/CodeGen/TargetLoweringBase.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringBase.cpp b/llvm/lib/CodeGen/TargetLoweringBase.cpp
index 970b206..320f931 100644
--- a/llvm/lib/CodeGen/TargetLoweringBase.cpp
+++ b/llvm/lib/CodeGen/TargetLoweringBase.cpp
@@ -583,11 +583,7 @@ TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm) : TM(tm) {
BooleanFloatContents = UndefinedBooleanContent;
BooleanVectorContents = UndefinedBooleanContent;
SchedPreferenceInfo = Sched::ILP;
- MinFunctionLogAlignment = 0;
- PrefFunctionLogAlignment = 0;
- PrefLoopLogAlignment = 0;
GatherAllAliasesMaxDepth = 18;
- MinStackArgumentAlignment = 1;
// TODO: the default will be switched to 0 in the next commit, along
// with the Target-specific changes necessary.
MaxAtomicSizeInBitsSupported = 1024;