[PATCH] D56927: Disable PIC/PIE for MSP430 target
Anton Korobeynikov via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 25 01:42:15 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rC352181: Disable PIC/PIE for MSP430 target by default. (authored by asl, committed by ).
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: 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;
Index: test/CodeGen/msp430-reloc.c
===================================================================
--- test/CodeGen/msp430-reloc.c
+++ test/CodeGen/msp430-reloc.c
@@ -0,0 +1,29 @@
+// 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;
+}
+
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D56927.183495.patch
Type: text/x-patch
Size: 1268 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190125/6287aad4/attachment.bin>
More information about the cfe-commits
mailing list