Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] Speed up the 'if/else'
@ 2009-08-30  2:56 Jiang Jilin
  2009-08-30  7:13 ` Paul Pluzhnikov
  2009-08-30 13:15 ` Mark Kettenis
  0 siblings, 2 replies; 4+ messages in thread
From: Jiang Jilin @ 2009-08-30  2:56 UTC (permalink / raw)
  To: msnyder, teawater; +Cc: gdb-patches, Jiang Jilin

2009-08-30  Jiang Jilin <freephp@gmail.com>

	* reverse.c (exec_reverse_once): add 'else' to speed up
---
 gdb/reverse.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/gdb/reverse.c b/gdb/reverse.c
index ee59cf3..f2af6d1 100644
--- a/gdb/reverse.c
+++ b/gdb/reverse.c
@@ -48,9 +48,8 @@ exec_reverse_once (char *cmd, char *args, int from_tty)
   struct cleanup *old_chain;
 
   if (dir == EXEC_ERROR)
-    error (_("Target %s does not support this command."), target_shortname);
-
-  if (dir == EXEC_REVERSE)
+    error (_("Target %s does not support this command."), target_shortname); 
+  else if (dir == EXEC_REVERSE)
     error (_("Already in reverse mode.  Use '%s' or 'set exec-dir forward'."),
 	   cmd);
 
-- 
1.5.4.3


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-08-30  8:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-30  2:56 [PATCH] Speed up the 'if/else' Jiang Jilin
2009-08-30  7:13 ` Paul Pluzhnikov
2009-08-30  8:41   ` Jiang Jilin
2009-08-30 13:15 ` Mark Kettenis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox