[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug binutils/1298] m68k-dis.c:1348: warning: argument 'info' might be c
From: |
bje at sources dot redhat dot com |
Subject: |
[Bug binutils/1298] m68k-dis.c:1348: warning: argument 'info' might be clobbered by 'longjmp' or 'vfork' |
Date: |
29 Mar 2006 05:25:19 -0000 |
------- Additional Comments From bje at sources dot redhat dot com 2006-03-29
05:25 -------
The warning does not indicate a bug, as the indirect return to the setjmp site
leads to an early return -- the `info' parameter is never used.
if (setjmp (priv.bailout) != 0)
/* Error return. */
return -1;
The question now is how to eliminate the warning.
--
http://sourceware.org/bugzilla/show_bug.cgi?id=1298
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.