Restore LDFLAGS in notes.exp
[binutils-gdb.git] / gdb / stack.c
index 427b182c7f5a7c31f6e13b52f9839e29cf52b67c..ecf1ee83793af589d0a9d7ebbf7748deaa4d7a99 100644 (file)
@@ -1645,7 +1645,6 @@ info_frame_command (const char *addr_exp, int from_tty)
              }
 
            release_value (value);
-           value_free (value);
            need_nl = 0;
          }
        /* else keep quiet.  */
@@ -1780,24 +1779,6 @@ backtrace_command_1 (const char *count_exp, frame_filter_flags flags,
          count = -1;
        }
 
-      if (info_verbose)
-       {
-         /* Read in symbols for all of the frames.  Need to do this in a
-            separate pass so that "Reading in symbols for xxx" messages
-            don't screw up the appearance of the backtrace.  Also if
-            people have strong opinions against reading symbols for
-            backtrace this may have to be an option.  */
-         i = count;
-         for (fi = trailing; fi != NULL && i--; fi = get_prev_frame (fi))
-           {
-             CORE_ADDR pc;
-
-             QUIT;
-             pc = get_frame_address_in_block (fi);
-             expand_symtab_containing_pc (pc, find_pc_mapped_section (pc));
-           }
-       }
-
       for (i = 0, fi = trailing; fi && count--; i++, fi = get_prev_frame (fi))
        {
          QUIT;