This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[v3] Fix typo in valarray_name_lookup.cc


Hi,

obvious, tested x86-linux, committed both trunk and 3_3.

Paolo.

///////////
2003-02-05  Paolo Carlini  <pcarlini@unitus.it>

	* testsuite/26_numerics/valarray_name_lookup.cc: Fix typo.
--- valarray_name_lookup.cc.~1.2.~	2003-02-04 23:39:14.000000000 +0100
+++ valarray_name_lookup.cc	2003-02-05 18:35:03.000000000 +0100
@@ -70,7 +70,7 @@
 
   Number cos(Number);
   Number cosh(Number);
-  Number acosh(Number);
+  Number acos(Number);
 
   Number sin(Number);
   Number sinh(Number);
@@ -102,7 +102,7 @@
   
   v = cos(u);
   v = cosh(u);
-  //  v = acos(u); // 2003-02-01 XFAIL
+  v = acos(u);
 
   v = sin(u);
   v = sinh(u);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]