From 4537976afda2dfe2d20f2f572ca64c71ec8425ec Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 9 Mar 2020 12:24:21 -0700 Subject: [PATCH] Port .gdbinit to clang with -gdwarf-4 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * src/.gdbinit (xgetsym): Port to clang with -gdwarf-4, which doesn’t output the type of lispsym anywhere other than emacs.o (Bug#39962). --- src/.gdbinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.gdbinit b/src/.gdbinit index 5dd01337153..30c7b055ce0 100644 --- a/src/.gdbinit +++ b/src/.gdbinit @@ -72,7 +72,7 @@ end define xgetsym xgetptr $arg0 - set $ptr = ((struct Lisp_Symbol *) ((char *)lispsym + $ptr)) + set $ptr = ((struct Lisp_Symbol *) ((char *) &lispsym + $ptr)) end # Access the name of a symbol -- 2.39.5