mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-29 09:08:52 +00:00
1906cf93f8
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... :-(
44 lines
1.1 KiB
Diff
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;
|
|
+}
|