]> gcc.gnu.org Git - gcc.git/commitdiff
* gcc.c-torture/execute/20001130-2.c: New testcase.
authorGeoffrey Keating <geoffk@redhat.com>
Fri, 1 Dec 2000 00:15:29 +0000 (00:15 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Fri, 1 Dec 2000 00:15:29 +0000 (00:15 +0000)
From-SVN: r37902

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/20001130-2.c [new file with mode: 0644]

index f9c90e24a8cd22670dabd90919b031f2f7cb0edf..3363678eb1058dd2eae3b1967f02bab532349b6d 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-30  Geoffrey Keating  <geoffk@redhat.com>
+
+       * gcc.c-torture/execute/20001130-2.c: New testcase.
+
 2000-11-30  Richard Henderson  <rth@redhat.com>
 
        * gcc.c-torture/execute/20001130-1.c: New test.
diff --git a/gcc/testsuite/gcc.c-torture/execute/20001130-2.c b/gcc/testsuite/gcc.c-torture/execute/20001130-2.c
new file mode 100644 (file)
index 0000000..c4ef6c7
--- /dev/null
@@ -0,0 +1,31 @@
+static int which_alternative = 3;
+
+static const char *i960_output_ldconst (void);
+
+static const char *
+output_25 (void)
+{
+  switch (which_alternative)
+    {
+    case 0:
+      return "mov      %1,%0";
+    case 1:
+      return i960_output_ldconst ();
+    case 2:
+      return "ld       %1,%0";
+    case 3:
+      return "st       %1,%0";      
+    }
+}
+
+static const char *i960_output_ldconst (void)
+{
+  return "foo";
+}
+int main(void)
+{
+  const char *s = output_25 () ;
+  if (s[0] != 's')
+    abort ();
+  exit (0);
+}
This page took 0.067017 seconds and 5 git commands to generate.