]> rtime.felk.cvut.cz Git - l4.git/blobdiff - l4/pkg/valgrind/src/valgrind-3.6.0-svn/coregrind/m_debuginfo/readstabs.c
update
[l4.git] / l4 / pkg / valgrind / src / valgrind-3.6.0-svn / coregrind / m_debuginfo / readstabs.c
index 00cbf6be7b6440d9db53831339cd5bcec81584d8..30bfe6a441674a0a317be9ee03f15b1b4433c0e9 100644 (file)
@@ -338,13 +338,11 @@ void ML_(read_debuginfo_stabs) ( DebugInfo* di,
 
          case N_FUN: {                /* function start/end */
             Addr addr = 0;        /* end address for prev line/scope */
-            Bool newfunc = False;
 
             /* if this the end of the function or we haven't
                previously finished the previous function... */
             if (*string == '\0' || func.start != 0) {
                /* end of function */
-               newfunc = False;
                line.first = False;
 
                /* end line at end of function */
@@ -358,7 +356,6 @@ void ML_(read_debuginfo_stabs) ( DebugInfo* di,
 
             if (*string != '\0') {
                /* new function */
-               newfunc = True;
                line.first = True;
 
                /* line ends at start of next function */