This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Make z int


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=4422ac93e5d3d23dd441aadaa49c81356aa59b73

commit 4422ac93e5d3d23dd441aadaa49c81356aa59b73
Author: Luis Machado <lgustavo@codesourcery.com>
Date:   Mon Aug 24 13:08:20 2015 -0300

    Make z int
    
    This makes z an int for gdb/testsuite/gdb.opt/inline-markers.c.
    
    gdb/testsuite/ChangeLog:
    
    2015-08-24  Luis Machado  <lgustavo@codesourcery.com>
    
    	* gdb.opt/inline-markers.c: Make z int.

Diff:
---
 gdb/testsuite/ChangeLog                | 4 ++++
 gdb/testsuite/gdb.opt/inline-markers.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 5dc7f92..9c0d33b 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,9 @@
 2015-08-24  Luis Machado  <lgustavo@codesourcery.com>
 
+	* gdb.opt/inline-markers.c: Make z int.
+
+2015-08-24  Luis Machado  <lgustavo@codesourcery.com>
+
 	* gdb.opt/inline-markers.c: Make z volatile.
 
 2015-08-24  Luis Machado  <lgustavo@codesourcery.com>
diff --git a/gdb/testsuite/gdb.opt/inline-markers.c b/gdb/testsuite/gdb.opt/inline-markers.c
index dabc5b5..a9a9d92 100644
--- a/gdb/testsuite/gdb.opt/inline-markers.c
+++ b/gdb/testsuite/gdb.opt/inline-markers.c
@@ -14,7 +14,7 @@
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 extern int x, y;
-extern volatile z;
+extern volatile int z;
 
 void bar(void)
 {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]