PR target/17280
* gcc.target/sh/torture/pr17280.c: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218998
138bc75d-0d04-0410-961f-
82ee72b054a4
+2014-12-21 Oleg Endo <olegendo@gcc.gnu.org>
+
+ PR target/17280
+ * gcc.target/sh/torture/pr17280.c: New.
+
2014-12-19 Edward Smith-Rowland <3dw4rd@verizon.net>
* g++.dg/cpp1y/feat-cxx98-neg.C: Enable __cpp_sized_deallocation test.
--- /dev/null
+/* Check that there are no problems with .uses labels when branch relaxation
+ is enabled. */
+/* { dg-do assemble } */
+/* { dg-additional-options "-mrelax" } */
+
+extern void foo (int);
+
+int
+main (void)
+{
+ foo (7);
+ return 0;
+}