URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.c++/] [annota2.cc] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> class A { public: int x; int y; int foo (int arg); }; int A::foo (int arg) { x += arg; return arg *2; } int main() { A a; a.x = 0; a.x = 1; a.y = 2; printf ("a.x is %d\n", a.x); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log