mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-10 01:52:28 +08:00

Pedro suggested adding a comment to list0.h to explain the control character. Tested on x86-64 Fedora 29. gdb/testsuite/ChangeLog 2019-06-18 Tom Tromey <tromey@adacore.com> * gdb.base/list0.h: Add comment explaining control character.
38 lines
683 B
C
38 lines
683 B
C
/* An include file that actually causes code to be generated in the including file. This is known to cause problems on some systems. */
|
||
|
||
extern void bar(int);
|
||
static void foo (int x)
|
||
/* ! the next line has a control character, see PR symtab/24423.
|
||
|
||
! */
|
||
{
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
bar (x++);
|
||
}
|