2b2d9e11a0
* valops.c (check_field): Remove. (check_field_in): Rename to check_field. (value_of_this): Use la_name_of_this. * value.h (check_field): Adjust prototype. * language.h (la_value_of_this): Rename to la_name_of_this. * language.c (unknown_language_defn): Specify "this" for name_of_this. (auto_language_defn): Likewise. (local_language_defn): Likewise. * ada-lang.c (ada_language_defn): Adjust comment. * c-lang.c (c_language_defn): Adjust comment. (cplus_language_defn): Specify "this" for name_of_this. (asm_language_defn): Adjust comment. (minimal_language_defn): Adjust comment. * f-lang.c (f_language_defn): Specify NULL for name_of_this. * jv-lang.c (java_language_defn): Specify "this" for name_of_this. * m2-lang.c (m2_language_defn): Specify "this" for name_of_this. * objc-lang.c (objc_language_defn): Specify "self" for name_of_this. * p-lang.c (pascal_language_defn): Specify "this" for name_of_this. * scm-lang.c (scm_language_defn): Specify NULL for name_of_this. * symtab.c (lookup_symbol_aux): Lookup "this" in the proper scope, and check for field in type of "this", without trying to create a value.
66 lines
1.3 KiB
C++
66 lines
1.3 KiB
C++
/* Code to go along with tests in breakpoint.exp.
|
|
|
|
Copyright 2004, 2007, 2008 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
int g = 0;
|
|
|
|
class C1 {
|
|
public:
|
|
C1(int i) : i_(i) {}
|
|
|
|
int foo ()
|
|
{
|
|
return 1; // conditional breakpoint in method
|
|
}
|
|
|
|
int bar ()
|
|
{
|
|
for (int i = 0; i < 1; ++i)
|
|
{
|
|
int t = i * 2;
|
|
g += t; // conditional breakpoint in method 2
|
|
}
|
|
}
|
|
|
|
class Nested {
|
|
public:
|
|
int
|
|
foo ()
|
|
{
|
|
return 1;
|
|
}
|
|
};
|
|
|
|
private:
|
|
int i_;
|
|
};
|
|
|
|
int main ()
|
|
{
|
|
C1::Nested c1;
|
|
|
|
c1.foo ();
|
|
|
|
C1 c2 (2), c3 (3);
|
|
c2.foo ();
|
|
c2.bar ();
|
|
c3.foo ();
|
|
c3.bar ();
|
|
|
|
return 0;
|
|
}
|