2003-09-08 Michael Chastain <mec@shout.net>
authorMichael Chastain <mec@google.com>
Mon, 8 Sep 2003 21:30:52 +0000 (21:30 +0000)
committerMichael Chastain <mec@google.com>
Mon, 8 Sep 2003 21:30:52 +0000 (21:30 +0000)
* gdb.base/gdb1250.c: Rename 'gamma' to 'my_gamma'.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/gdb1250.c

index 21d4cd2..dda10d7 100644 (file)
@@ -1,3 +1,7 @@
+2003-09-08  Michael Chastain  <mec@shout.net>
+
+       * gdb.base/gdb1250.c: Rename 'gamma' to 'my_gamma'.
+
 2003-09-07  Michael Chastain  <mec@shout.net>
 
        * gdb.cp/classes.exp: Accommodate both 'syntax error' and
index 9d73f67..0af58d9 100644 (file)
 
 int global = 0;
 
-void gamma (int *parray)
+/* Foo, gcc thinks 'gamma' is a reserved identifier.
+   http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12213
+   I am not interested in testing that point so just avoid the word.
+   -- chastain 2003-09-08. */
+void my_gamma (int *parray)
 {
   return;
 }
@@ -37,7 +41,7 @@ void beta ()
   array [1] = global++;
   array [2] = global++;
   array [3] = global++;
-  gamma (array);
+  my_gamma (array);
   abort ();
 }