Drop non-prototype C function header variants: 'list' test case

Remove old-style function header variants from list0.h and list1.c.
Fill the removed lines with comments or empty lines, such that the
line numbering is undisturbed.  Changes to the line numbering would
require heavy adjustments to list.exp, where many line numbers are
hard-coded, as well as a fair amount of knowledge about the source
code in and around certain lines.  Thus the dependency on the line
numbering can not be eliminated so easily, and it may not even be a
useful goal for a "list" test case.  Another option might be to adjust
the literal line numbers in list.exp, but even that is not as
straightforward as it may seem, since the test case expects certain
source lines to be exactly n lines apart.

gdb/testsuite/ChangeLog:

	* gdb.base/list0.h: Remove #ifdef PROTOTYPES, keep prototyped
	variant.  Preserve original line numbering.
	* gdb.base/list1.c: Likewise.
This commit is contained in:
Andreas Arnez 2014-10-22 17:13:34 +00:00 committed by Andreas Krebbel
parent 3b377a3aa7
commit 4f204ea54e
3 changed files with 20 additions and 14 deletions

View File

@ -1,3 +1,9 @@
2014-11-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
* gdb.base/list0.h: Remove #ifdef PROTOTYPES, keep prototyped
variant. Preserve original line numbering.
* gdb.base/list1.c: Likewise.
2014-11-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
* gdb.base/break.c: Remove #ifdef PROTOTYPES, keep prototyped

View File

@ -1,10 +1,10 @@
/* An include file that actually causes code to be generated in the including file. This is known to cause problems on some systems. */
#ifdef PROTOTYPES
extern void bar(int);
static void foo (int x)
#else
static void foo (x) int x;
#endif
/* !
!
! */
{
bar (x++);
bar (x++);

File diff suppressed because one or more lines are too long