crosstool-ng/patches/gcc/3.3.3/pr9365-1-test.patch
Yann E. MORIN" 1906cf93f8 Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
2007-02-24 11:00:05 +00:00

44 lines
1.1 KiB
Diff

--- /dev/null Sat Dec 14 13:56:51 2002
+++ gcc-3.3.1/gcc/testsuite/gcc.dg/pr9365-1.c Sun Sep 14 09:34:37 2003
@@ -0,0 +1,40 @@
+/* PR target/9365
+ * Origin: marcus@mc.pp.se
+ * Testcase tweaked by dank@kegel.com
+ * [3.3 regression] [SH] segfault in gen_far_branch (config/sh/sh.c)
+ * ice-on-valid-code
+ * Not marked as xfail since it's a regression
+*/
+/* { dg-do compile } */
+/* { dg-options "-O2 -fomit-frame-pointer" } */
+
+
+void foo(int n, int *p)
+{
+ switch(n) {
+ case 100: case 110: case 120: case 130: case 140:
+ case 200: case 210: case 220: case 230: case 240:
+ case 300: case 310: case 320: case 330: case 340:
+ case 400: case 410: case 420: case 430: case 440:
+ case 500: case 510: case 520: case 530: case 540:
+ case 600: case 610: case 620: case 630: case 640:
+ case 700: case 710: case 720: case 730: case 740:
+ case 800: case 810: case 820: case 830: case 840:
+ case 900: case 910: case 920: case 930: case 940:
+ break;
+ default:
+ *p = n;
+ break;
+ }
+}
+
+int main(int argc, char **argv)
+{
+ int p;
+
+ (void) argv;
+
+ foo(argc, &p);
+
+ return p;
+}