gdb/arm-tdep.c: Remove "Infinite loop detected" error message.
authorWill Newton <will.newton@linaro.org>
Fri, 8 Nov 2013 16:26:10 +0000 (16:26 +0000)
committerWill Newton <will.newton@linaro.org>
Wed, 20 Nov 2013 10:50:32 +0000 (10:50 +0000)
Since as far back as the beginning of the sourceware repository
the ARM port has printed an error "Infinite loop detected" when
the next_pc calculated is the same as the current one, for example
when encountering a branch to the current PC address.

This causes the test gdb.base/random-signal.exp as the error message
is not expected. I have not been able to find a good reason for the
message to be here so remove it and let the test pass.

gdb/ChangeLog:

2013-11-20  Will Newton  <will.newton@linaro.org>

* arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
error message.

gdb/ChangeLog
gdb/arm-tdep.c

index dadea24fa09c05993e38b8c1c5ba2f7276a34473..66f20879da7ae1518cd04fd1318e3086ac4f0152 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-20  Will Newton  <will.newton@linaro.org>
+
+       * arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
+       error message.
+
 2013-11-20  Yao Qi  <yao@codesourcery.com>
 
        * progspace.h (struct address_space_data): Declare.
index 74e2f48237d67db8c931f115f69a68943cfa81a2..ff6548bfd1ffae51abb6da32a20b4671fa0a8baf 100644 (file)
@@ -4970,17 +4970,9 @@ arm_get_next_pc (struct frame_info *frame, CORE_ADDR pc)
   CORE_ADDR nextpc;
 
   if (arm_frame_is_thumb (frame))
-    {
-      nextpc = thumb_get_next_pc_raw (frame, pc);
-      if (nextpc == MAKE_THUMB_ADDR (pc))
-       error (_("Infinite loop detected"));
-    }
+    nextpc = thumb_get_next_pc_raw (frame, pc);
   else
-    {
-      nextpc = arm_get_next_pc_raw (frame, pc);
-      if (nextpc == pc)
-       error (_("Infinite loop detected"));
-    }
+    nextpc = arm_get_next_pc_raw (frame, pc);
 
   return nextpc;
 }