mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-17 04:43:17 +08:00
* dwarf-mode.el (dwarf-do-insert-substructure): Call
expand-file-name. (dwarf-do-refresh): Likewise.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2011-06-16 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* dwarf-mode.el (dwarf-do-insert-substructure): Call
|
||||||
|
expand-file-name.
|
||||||
|
(dwarf-do-refresh): Likewise.
|
||||||
|
|
||||||
2011-06-15 Ulrich Weigand <ulrich.weigand@linaro.org>
|
2011-06-15 Ulrich Weigand <ulrich.weigand@linaro.org>
|
||||||
|
|
||||||
* readelf.c (get_note_type): Handle NT_ARM_VFP.
|
* readelf.c (get_note_type): Handle NT_ARM_VFP.
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
(save-excursion
|
(save-excursion
|
||||||
(apply #'call-process dwarf-objdump-program nil (current-buffer) nil
|
(apply #'call-process dwarf-objdump-program nil (current-buffer) nil
|
||||||
"-Wi" (concat "--dwarf-start=0x" die)
|
"-Wi" (concat "--dwarf-start=0x" die)
|
||||||
dwarf-file
|
(expand-file-name dwarf-file)
|
||||||
(if new-depth (list (concat "--dwarf-depth="
|
(if new-depth (list (concat "--dwarf-depth="
|
||||||
(int-to-string new-depth))))))
|
(int-to-string new-depth))))))
|
||||||
(set-buffer-modified-p nil)))
|
(set-buffer-modified-p nil)))
|
||||||
@ -136,7 +136,7 @@ A prefix argument means expand all children."
|
|||||||
(call-process dwarf-objdump-program
|
(call-process dwarf-objdump-program
|
||||||
nil (current-buffer) nil
|
nil (current-buffer) nil
|
||||||
"-Wi" "--dwarf-depth=1"
|
"-Wi" "--dwarf-depth=1"
|
||||||
dwarf-file))
|
(expand-file-name dwarf-file)))
|
||||||
(set-buffer-modified-p nil)))
|
(set-buffer-modified-p nil)))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
|
Reference in New Issue
Block a user