mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
* buildsym.c (finish_block): Reset using_directives pointer after block initialization. 2010-03-12 Sami Wagiaalla <swagiaal@redhat.com> * gdb.cp/gdb2384-base.h: Created 'namespace B'. * gdb.cp/gdb2384-base.cc: Use 'namespace B'.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
|
||||||
|
|
||||||
|
* buildsym.c (finish_block): Reset using_directives pointer
|
||||||
|
after block initialization.
|
||||||
|
|
||||||
2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
|
2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* amd64-tdep.c (amd64_word_names): Replace "sp" with "".
|
* amd64-tdep.c (amd64_word_names): Replace "sp" with "".
|
||||||
|
@ -387,6 +387,7 @@ finish_block (struct symbol *symbol, struct pending **listhead,
|
|||||||
}
|
}
|
||||||
|
|
||||||
block_set_using (block, using_directives, &objfile->objfile_obstack);
|
block_set_using (block, using_directives, &objfile->objfile_obstack);
|
||||||
|
using_directives = NULL;
|
||||||
|
|
||||||
record_pending_block (objfile, block, opblock);
|
record_pending_block (objfile, block, opblock);
|
||||||
|
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
|
||||||
|
|
||||||
|
* gdb.cp/gdb2384-base.h: Created 'namespace B'.
|
||||||
|
* gdb.cp/gdb2384-base.cc: Use 'namespace B'.
|
||||||
|
|
||||||
2010-03-12 Daniel Jacobowitz <dan@codesourcery.com>
|
2010-03-12 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
* lib/gdb.exp (gdb_test_multiple): Handle -timeout.
|
* lib/gdb.exp (gdb_test_multiple): Handle -timeout.
|
||||||
|
@ -23,6 +23,8 @@ base::base (int _x)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
using namespace B;
|
||||||
|
|
||||||
int
|
int
|
||||||
base::meth ()
|
base::meth ()
|
||||||
{
|
{
|
||||||
|
@ -16,6 +16,10 @@
|
|||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
namespace B{
|
||||||
|
int x;
|
||||||
|
}
|
||||||
|
|
||||||
class base
|
class base
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
Reference in New Issue
Block a user