OSDN Git Service

* gcc.dg/20020312-1.c: New test case.
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 12 Mar 2002 07:53:40 +0000 (07:53 +0000)
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 12 Mar 2002 07:53:40 +0000 (07:53 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50640 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/20020312-1.c [new file with mode: 0644]

index dc5e87c..43ec99a 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-12  Roger Sayle  <roger@eyesopen.com>
+
+       * gcc.dg/20020312-1.c: New test case.
+
 2002-03-11  Aldy Hernandez  <aldyh@redhat.com>
 
         * gcc.dg/altivec-1.c: Cleanup and use altivec.h.
@@ -111,7 +115,7 @@ Thu Mar  7 10:05:31 2002  Jeffrey A Law  (law@redhat.com)
        * g++.old-deja/g++.pt/friend23.C: Likewise.
        * g++.old-deja/g++.pt/infinite1.C: Likewise.
        * g++.old-deja/g++.robertl/eb128.C: Likewise.
-       
+
 2002-02-27  Geoffrey Keating  <geoffk@redhat.com>
 
        * gcc.c-torture/execute/20020225-2.c: New test.
@@ -270,7 +274,7 @@ Thu Mar  7 10:05:31 2002  Jeffrey A Law  (law@redhat.com)
 
 2002-02-12  David Billinghurst <David.Billinghurst@riotinto.com>
 
-       * gcc.dg/c99-flex-array-2.c: Add -std=iso9899:1999 
+       * gcc.dg/c99-flex-array-2.c: Add -std=iso9899:1999
 
 2002-02-10  Kazu Hirata  <kazu@hxi.com>
 
@@ -315,7 +319,7 @@ Thu Mar  7 10:05:31 2002  Jeffrey A Law  (law@redhat.com)
 2002-02-07  David Billinghurst <David.Billinghurst@riotinto.com>
 
        PR fortran/5473
-       * g77.dg/pr5473.f: Now dg-error.  Add additional cases.  
+       * g77.dg/pr5473.f: Now dg-error.  Add additional cases.
 
 2002-02-07  Richard Henderson  <rth@redhat.com>
 
@@ -512,7 +516,7 @@ Thu Mar  7 10:05:31 2002  Jeffrey A Law  (law@redhat.com)
        * gcc.c-torture/execute/20020127-1.c: New test.
 
 2002-01-27  David Billinghurst  <David.Billinghurst@riotinto.com>
+
        * g77.dg/f77-edit-i-in.f: New test
        * g77.dg/f77-edit-i-out.f: New test
 
diff --git a/gcc/testsuite/gcc.dg/20020312-1.c b/gcc/testsuite/gcc.dg/20020312-1.c
new file mode 100644 (file)
index 0000000..9784018
--- /dev/null
@@ -0,0 +1,10 @@
+/* This testcase ICEd on alpha because of an unrecognized insn formed
+   by conditional move optimization using an incorrect mode.  */
+/* { dg-do compile } */
+/* { dg-options "-O -ffast-math" } */
+
+char*
+barf (double x)
+{
+    return (x<0.0) ? "foo" : "bar";
+}