diff options
Diffstat (limited to 'gdb/testsuite/gdb.python/py-lazy-string.c')
-rw-r--r-- | gdb/testsuite/gdb.python/py-lazy-string.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.python/py-lazy-string.c b/gdb/testsuite/gdb.python/py-lazy-string.c index 105c559..41011ce 100644 --- a/gdb/testsuite/gdb.python/py-lazy-string.c +++ b/gdb/testsuite/gdb.python/py-lazy-string.c @@ -18,6 +18,9 @@ int main () { + const char *ptr = "pointer"; + const char array[] = "array"; + pointer typedef_ptr = "typedef pointer"; const char *null = 0; return 0; /* break here */ |