all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: Glenn Morris <rgm@gnu.org>
Cc: gpion@lfdj.com, 13408@debbugs.gnu.org
Subject: bug#13408: Emacs pretest 24.2.92 - compilation error on AIX 5.3 using	gcc 4.7-2
Date: Fri, 11 Jan 2013 10:24:39 +0200	[thread overview]
Message-ID: <836234gm9k.fsf@gnu.org> (raw)
In-Reply-To: <3xwqvkutfc.fsf@fencepost.gnu.org>

> From: Glenn Morris <rgm@gnu.org>
> Date: Fri, 11 Jan 2013 01:26:15 -0500
> Cc: 13408@debbugs.gnu.org
> 
> > /fdj/opt/gcc-4.7/bin/gcc -std=gnu99 -c  -Demacs  -I.
> > -I/sg/paxdev5/D1stunix/src/emacs/24.2.92/emacs-24.2.92/src -I../lib
> > -I/sg/paxdev5/D1stunix/src/emacs/24.2.92/emacs-24.2.92/src/../lib
> >     -MMD -MF deps/eval.d -MP     -O2 -I/opt/freeware/include eval.c
> > eval.c: In function 'mark_backtrace':
> > eval.c:3380:20: error: invalid type argument of unary '*' (have
> > 'Lisp_Object')
> 
> Does anyone see what the problem is here?

This is the code in question, with line 3380 the last one:

  void
  mark_backtrace (void)
  {
    register struct backtrace *backlist;
    ptrdiff_t i;

    for (backlist = backtrace_list; backlist; backlist = backlist->next)
      {
	mark_object (*backlist->function);

Shouldn't it be

	mark_object (backlist->function);

instead?





  reply	other threads:[~2013-01-11  8:24 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-10 17:46 bug#13408: Emacs pretest 24.2.92 - compilation error on AIX 5.3 using gcc 4.7-2 Gilles Pion
2013-01-11  6:26 ` Glenn Morris
2013-01-11  8:24   ` Eli Zaretskii [this message]
2013-01-11  8:03 ` Paul Eggert
2013-01-11  9:15   ` Eli Zaretskii
2013-01-11 19:11     ` Paul Eggert
2013-01-11 19:51       ` conservative stack scanning (was: Re: bug#13408: Emacs pretest 24.2.92 - compilation error on AIX 5.3 using gcc 4.7-2) Stefan Monnier
2013-01-12  1:51         ` conservative stack scanning Paul Eggert
2013-01-12  2:15           ` Broken !GC_MARK_STACK [Re: conservative stack scanning] Dmitry Antipov
2013-01-12  6:19             ` Paul Eggert
2013-01-14  9:59               ` Dmitry Antipov
2013-01-12  4:23           ` conservative stack scanning Stefan Monnier
2013-01-12  5:22             ` Paul Eggert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=836234gm9k.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=13408@debbugs.gnu.org \
    --cc=gpion@lfdj.com \
    --cc=rgm@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.