gdb/testsuite/

Fix compatibility with old GCC (~4.1).
	* gdb.cp/converts.cc (my_enum_var): New variable.
This commit is contained in:
Jan Kratochvil 2012-09-16 17:30:48 +00:00
parent a82a73de34
commit 666b578baa
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-09-16 Jan Kratochvil <jan.kratochvil@redhat.com>
Fix compatibility with old GCC (~4.1).
* gdb.cp/converts.cc (my_enum_var): New variable.
2012-09-14 Andrew Burgess <aburgess@broadcom.com>
* gdb.xml/tdesc-regs.exp: Update expected output for new

View File

@ -12,6 +12,10 @@ typedef TA2 TA3;
enum my_enum {MY_A, MY_B, MY_C, MY_D};
/* Without this variable older 'enum my_enum' incl. its 'MY_A' would be omitted
by older versions of GCC (~4.1) failing the testcase using it below. */
enum my_enum my_enum_var;
int foo0_1 (TA1) { return 1; }
int foo0_2 (TA3) { return 2; }
int foo0_3 (A***) { return 3; }