Index: gdb/testsuite/gdb.dwarf2/fission-mix.c |
diff --git a/gdb/testsuite/gdb.dwarf2/fission-base.c b/gdb/testsuite/gdb.dwarf2/fission-mix.c |
similarity index 88% |
copy from gdb/testsuite/gdb.dwarf2/fission-base.c |
copy to gdb/testsuite/gdb.dwarf2/fission-mix.c |
index f2eb38735911811bb5ecbf31dbfcdc4daa6e93c5..c8fdde22b82843eb8ddd81cd5b735d14360d38d4 100644 |
--- a/gdb/testsuite/gdb.dwarf2/fission-base.c |
+++ b/gdb/testsuite/gdb.dwarf2/fission-mix.c |
@@ -1,6 +1,6 @@ |
/* This testcase is part of GDB, the GNU debugger. |
- Copyright 2012 Free Software Foundation, Inc. |
+ Copyright 2013 Free Software Foundation, Inc. |
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 |
@@ -15,6 +15,10 @@ |
You should have received a copy of the GNU General Public License |
along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
+#include "fission-mix.h" |
+ |
+struct s foo; |
+ |
int |
func (int arg) |
{ |
@@ -24,5 +28,6 @@ func (int arg) |
int |
main () |
{ |
+ foo.x = 1; |
return func (-1); |
} |