[PATCH] D56927: Disable PIC/PIE for MSP430 target
Dmitry Mikushin via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jan 29 10:11:36 PST 2019
dmikushin updated this revision to Diff 184118.
dmikushin added a comment.
Unbreaking patch by providing an appropriate toolchain requirement
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D56927/new/
https://reviews.llvm.org/D56927
Files:
lib/Driver/ToolChains/MSP430.h
test/CodeGen/msp430-reloc.c
Index: test/CodeGen/msp430-reloc.c
===================================================================
--- /dev/null
+++ test/CodeGen/msp430-reloc.c
@@ -0,0 +1,30 @@
+// REQUIRES: msp430-registered-target
+// RUN: %clang -target msp430 -fPIC -S %s -o - | FileCheck %s
+
+// Check the compilation does not crash as it was crashing before with "-fPIC" enabled
+
+void *alloca(unsigned int size);
+
+// CHECK: .globl foo
+short foo(char** data, char encoding)
+{
+ char* encoding_addr = alloca(sizeof(char));
+ *encoding_addr = encoding;
+
+ char tmp3 = *encoding_addr;
+ short conv2 = tmp3;
+ short and = conv2 & 0xf;
+
+ switch (and)
+ {
+ case 0 :
+ case 4 :
+ case 10 :
+ return 1;
+ case 11 :
+ return 2;
+ }
+
+ return 0;
+}
+
Index: lib/Driver/ToolChains/MSP430.h
===================================================================
--- lib/Driver/ToolChains/MSP430.h
+++ lib/Driver/ToolChains/MSP430.h
@@ -36,6 +36,10 @@
llvm::opt::ArgStringList &CC1Args,
Action::OffloadKind) const override;
+ bool isPICDefault() const override { return false; }
+ bool isPIEDefault() const override { return false; }
+ bool isPICDefaultForced() const override { return true; }
+
protected:
Tool *buildLinker() const override;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D56927.184118.patch
Type: text/x-patch
Size: 1289 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190129/aea0751d/attachment.bin>
More information about the cfe-commits
mailing list