summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>2016-01-28 22:28:04 +0000
committersje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>2016-01-28 22:28:04 +0000
commitc80c12c85007ef7a7f7db83cf000803a163f1b23 (patch)
tree45a96d2b1ef9bb42ed5100c1351e5014dd1bd134
parent912531832289c6321fdc427512c8d400875c5e68 (diff)
downloadgcc-c80c12c85007ef7a7f7db83cf000803a163f1b23.tar.gz
PR target/68400
* gcc.target/mips/mips.exp (mips_option_groups): Add stack-protector. * gcc.target/mips/pr68400.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232954 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gcc.target/mips/mips.exp1
-rw-r--r--gcc/testsuite/gcc.target/mips/pr68400.c28
3 files changed, 35 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 0957d2f547a..fc1e4ee1830 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2016-01-28 Steve Ellcey <sellcey@imgtec.com>
+
+ PR target/68400
+ * gcc.target/mips/mips.exp (mips_option_groups): Add stack-protector.
+ * gcc.target/mips/pr68400.c: New test.
+
2016-01-28 Martin Sebor <msebor@redhat.com>
PR target/17381
diff --git a/gcc/testsuite/gcc.target/mips/mips.exp b/gcc/testsuite/gcc.target/mips/mips.exp
index f1913318bff..ff9c99a8409 100644
--- a/gcc/testsuite/gcc.target/mips/mips.exp
+++ b/gcc/testsuite/gcc.target/mips/mips.exp
@@ -257,6 +257,7 @@ set mips_option_groups {
lsa "(|!)HAS_LSA"
section_start "-Wl,--section-start=.*"
frame-header "-mframe-header-opt|-mno-frame-header-opt"
+ stack-protector "-fstack-protector"
}
for { set option 0 } { $option < 32 } { incr option } {
diff --git a/gcc/testsuite/gcc.target/mips/pr68400.c b/gcc/testsuite/gcc.target/mips/pr68400.c
new file mode 100644
index 00000000000..1099568a8dc
--- /dev/null
+++ b/gcc/testsuite/gcc.target/mips/pr68400.c
@@ -0,0 +1,28 @@
+/* PR target/pr68400
+ This was triggering an ICE in change_address_1 when compiled with -Os. */
+
+/* { dg-do compile } */
+/* { dg-options "-fstack-protector -mips16" } */
+
+typedef struct s {
+ unsigned long long d;
+ long long t;
+} p;
+
+int sh(int x, unsigned char *buf)
+{
+ p *uhdr = (p *)buf;
+ unsigned int i = 0;
+ uhdr->d = ((uhdr->d & 0xff00000000000000LL) >> 56)
+ | ((uhdr->d & 0x0000ff0000000000LL) >> 24)
+ | ((uhdr->d & 0x00000000ff000000LL) << 8)
+ | ((uhdr->d & 0x00000000000000ffLL) << 56);
+ uhdr->t = ((uhdr->t & 0xff00000000000000LL) >> 56)
+ | ((uhdr->t & 0x0000ff0000000000LL) >> 24)
+ | ((uhdr->t & 0x000000ff00000000LL) >> 8)
+ | ((uhdr->t & 0x00000000ff000000LL) << 8)
+ | ((uhdr->t & 0x000000000000ff00LL) << 40)
+ | ((uhdr->t & 0x00000000000000ffLL) << 56);
+ i += 4;
+ if (x < i) return 0; else return 1;
+}