mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
* gdb.cp/converts.cc (main): Initialize 'a'.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2013-01-23 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* gdb.cp/converts.cc (main): Initialize 'a'.
|
||||||
|
|
||||||
2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
|
2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
|
||||||
|
|
||||||
* testsuite/gdb.python/frame.exp: Add a test for
|
* testsuite/gdb.python/frame.exp: Add a test for
|
||||||
|
@ -53,7 +53,8 @@ int main()
|
|||||||
//foo0_3(bppp); // Pointer-to-pointer-to-pointer base.
|
//foo0_3(bppp); // Pointer-to-pointer-to-pointer base.
|
||||||
foo0_3((A***)bppp); // to ensure that the function is emitted.
|
foo0_3((A***)bppp); // to ensure that the function is emitted.
|
||||||
|
|
||||||
char *a; // pointer to..
|
char av = 'a';
|
||||||
|
char *a = &av; // pointer to..
|
||||||
B *bp;
|
B *bp;
|
||||||
foo1_1 (a); // ..pointer
|
foo1_1 (a); // ..pointer
|
||||||
foo1_2 (a); // ..array
|
foo1_2 (a); // ..array
|
||||||
|
Reference in New Issue
Block a user