From: Luis Machado Date: Mon, 24 Aug 2015 15:56:15 +0000 (-0300) Subject: Make z volatile. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=91dddb86299bba404599551e9e2633b3c0e5c830;p=binutils-gdb.git Make z volatile. This fixes a typo in gdb/testsuite/gdb.opt/inline-markers.c, making z a volatile variable. gdb/testsuite/ChangeLog: 2015-08-24 Luis Machado * gdb.opt/inline-markers.c: Make z volatile. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index b788c0f8eca..5dc7f92d109 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-08-24 Luis Machado + + * gdb.opt/inline-markers.c: Make z volatile. + 2015-08-24 Luis Machado * gdb.opt/inline-bt.c: New volatile global z. diff --git a/gdb/testsuite/gdb.opt/inline-markers.c b/gdb/testsuite/gdb.opt/inline-markers.c index 5d5503331d4..dabc5b53fb4 100644 --- a/gdb/testsuite/gdb.opt/inline-markers.c +++ b/gdb/testsuite/gdb.opt/inline-markers.c @@ -13,7 +13,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -extern int x, y, z; +extern int x, y; +extern volatile z; void bar(void) {