diff options
author | Walfred Tedeschi <walfred.tedeschi@intel.com> | 2015-11-04 11:09:03 +0100 |
---|---|---|
committer | Walfred Tedeschi <walfred.tedeschi@intel.com> | 2015-11-04 11:09:03 +0100 |
commit | 14cb1c0b38b120cf5325d9538cce1a0347e2b626 (patch) | |
tree | c94190670190aa484d67772bbee2d718161769da | |
parent | 1a2ccd2e32ecf767973bf96b965e915bd0a04bf3 (diff) | |
download | binutils-gdb-14cb1c0b38b120cf5325d9538cce1a0347e2b626.tar.gz |
Fix non stopping breakpoint on newer compilers.
The breakpoint presented in the return statement was not activated while
compiling the test with gcc 4.9.2. Added a dummy statement to allow the
breakpoint again.
2015-10-14 Walfred Tedeschi <walfred.tedeschi@intel.com>
gdb/testsuite:
* i386-mpx-map.c (foo): Add dummy statement to trigger breakpoint.
Change-Id: I5293ca1c7f82a631e1e41cb650c30dd2d09ef3c2
Signed-off-by: Walfred Tedeschi <walfred.tedeschi@intel.com>
-rw-r--r-- | gdb/testsuite/gdb.arch/i386-mpx-map.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.arch/i386-mpx-map.c b/gdb/testsuite/gdb.arch/i386-mpx-map.c index 8a9094cf9c6..ee7f11be237 100644 --- a/gdb/testsuite/gdb.arch/i386-mpx-map.c +++ b/gdb/testsuite/gdb.arch/i386-mpx-map.c @@ -70,8 +70,9 @@ foo (T *p) #if defined __GNUC__ && !defined __INTEL_COMPILER __bnd_store_ptr_bounds (x, &x); #endif - - return; /* after-assign */ + /* Dummy assign. */ + x = x + 1; /* after-assign */ + return; } int |