From: Michael Chastain Date: Mon, 8 Sep 2003 21:30:52 +0000 (+0000) Subject: 2003-09-08 Michael Chastain X-Git-Tag: ezannoni_pie-20030916-branchpoint~115 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=04ed252fc113049bd1a05997f51b24d932f6fa09;p=thirdparty%2Fbinutils-gdb.git 2003-09-08 Michael Chastain * gdb.base/gdb1250.c: Rename 'gamma' to 'my_gamma'. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 21d4cd257af..dda10d7cff6 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-09-08 Michael Chastain + + * gdb.base/gdb1250.c: Rename 'gamma' to 'my_gamma'. + 2003-09-07 Michael Chastain * gdb.cp/classes.exp: Accommodate both 'syntax error' and diff --git a/gdb/testsuite/gdb.base/gdb1250.c b/gdb/testsuite/gdb.base/gdb1250.c index 9d73f6735c2..0af58d92fcb 100644 --- a/gdb/testsuite/gdb.base/gdb1250.c +++ b/gdb/testsuite/gdb.base/gdb1250.c @@ -25,7 +25,11 @@ 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 (); }