This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

Re: [PATCH 2/7] Fix build with CP_DEMANGLE_DEBUG


On 07/06/2015 01:33 PM, Mikhail Maltsev wrote:
---
  libiberty/cp-demangle.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c
index 2988b6b..12093cc 100644
--- a/libiberty/cp-demangle.c
+++ b/libiberty/cp-demangle.c
@@ -715,7 +715,7 @@ d_dump (struct demangle_component *dc, int indent)
      case DEMANGLE_COMPONENT_FIXED_TYPE:
        printf ("fixed-point type, accum? %d, sat? %d\n",
                dc->u.s_fixed.accum, dc->u.s_fixed.sat);
-      d_dump (dc->u.s_fixed.length, indent + 2)
+      d_dump (dc->u.s_fixed.length, indent + 2);
        break;
      case DEMANGLE_COMPONENT_ARGLIST:
        printf ("argument list\n");
With a ChangeLog entry, this will obviously be OK.

jeff


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