This is the mail archive of the gdb-patches@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]

[patch] Fix unintended fall-through in dump_subexp_body_standard


Greetings,

The code currently in dump_subexp_body_standard() looks "obviously
wrong" to me, but perhaps I am missing something ...

Thanks,

--
Paul Pluzhnikov

2009-03-02  Paul Pluzhnikov  <ppluzhnikov@google.com>

	    * expprint.c (dump_subexp_body_standard): Fix unintended fall-through.

Index: expprint.c
===================================================================
RCS file: /cvs/src/src/gdb/expprint.c,v
retrieving revision 1.35
diff -u -p -u -r1.35 expprint.c
--- expprint.c	3 Jan 2009 05:57:51 -0000	1.35
+++ expprint.c	3 Mar 2009 00:11:08 -0000
@@ -889,6 +889,7 @@ dump_subexp_body_standard (struct expres
     case TERNOP_SLICE:
     case TERNOP_SLICE_COUNT:
       elt = dump_subexp (exp, stream, elt);
+      break;
     case BINOP_ADD:
     case BINOP_SUB:
     case BINOP_MUL:
@@ -927,6 +928,7 @@ dump_subexp_body_standard (struct expres
     case STRUCTOP_MEMBER:
     case STRUCTOP_MPTR:
       elt = dump_subexp (exp, stream, elt);
+      break;
     case UNOP_NEG:
     case UNOP_LOGICAL_NOT:
     case UNOP_COMPLEMENT:


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