From Jim Blandy <jimb@redhat.com>
* gdb.base/foo.c (foox): Remove section attribute; the linker
script can handle this instead.
* gdb.base/bar.c (barx): Same.
* gdb.base/baz.c (bazx): Same.
* gdb.base/grbx.c (grbxx): Same.
* gdb.base/overlays.exp: New test: check that GDB's manual overlay
manager doesn't automatically unmap overlays unnecessarily.
10 lines
103 B
C
10 lines
103 B
C
static int barx = 'b' + 'a' + 'r';
|
|
|
|
int bar (int x)
|
|
{
|
|
if (x)
|
|
return barx;
|
|
else
|
|
return 0;
|
|
}
|