aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
diff options
context:
space:
mode:
authorRichard Osborne <richard@xmos.com>2013-05-04 16:40:58 +0000
committerRichard Osborne <richard@xmos.com>2013-05-04 16:40:58 +0000
commit0c66f30325848014eda3203da5fae4c2e71a2884 (patch)
tree1fe2d7c9ba543197b2cccb1c27164a137f83666a /lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
parentd66ad6c57115e85487e8a29b1e073305690a9be2 (diff)
downloadexternal_llvm-0c66f30325848014eda3203da5fae4c2e71a2884.zip
external_llvm-0c66f30325848014eda3203da5fae4c2e71a2884.tar.gz
external_llvm-0c66f30325848014eda3203da5fae4c2e71a2884.tar.bz2
[XCore] Use static relocation model by default.
This allows us to get get rid of a hack in XCoreTargetObjectFile where the the DataRel* sections were overridden. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181116 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp')
-rw-r--r--lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp b/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
index b5b072d..c177365 100644
--- a/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
+++ b/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
@@ -66,6 +66,9 @@ static MCCodeGenInfo *createXCoreMCCodeGenInfo(StringRef TT, Reloc::Model RM,
CodeModel::Model CM,
CodeGenOpt::Level OL) {
MCCodeGenInfo *X = new MCCodeGenInfo();
+ if (RM == Reloc::Default) {
+ RM = Reloc::Static;
+ }
X->InitMCCodeGenInfo(RM, CM, OL);
return X;
}