public inbox for gdb-prs@sourceware.org help / color / mirror / Atom feed
* [Bug gdb/14540] New: GDB for ARM target fails to build with clang @ 2012-09-02 10:40 eblotml at free dot fr 2012-09-03 9:17 ` [Bug sim/14540] " palves at redhat dot com ` (4 more replies) 0 siblings, 5 replies; 6+ messages in thread From: eblotml at free dot fr @ 2012-09-02 10:40 UTC (permalink / raw) To: gdb-prs http://sourceware.org/bugzilla/show_bug.cgi?id=14540 Bug #: 14540 Summary: GDB for ARM target fails to build with clang Product: gdb Version: 7.5 Status: NEW Severity: normal Priority: P2 Component: gdb AssignedTo: unassigned@sourceware.org ReportedBy: eblotml@free.fr Classification: Unclassified clang compiler throws the following error: armsupp.c:639:7: error: non-void function 'ARMul_MRC' should return a value [-Wreturn-type] return; for arm-eabi generic target. host is OS X 10.8.1 It seems the function: ARMword ARMul_MRC (ARMul_State * state, ARMword instr) { unsigned cpab; ARMword result = 0; if (! CP_ACCESS_ALLOWED (state, CPNum)) { ARMul_UndefInstr (state, instr); return; } ... } is actually missing an error value. -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug sim/14540] GDB for ARM target fails to build with clang 2012-09-02 10:40 [Bug gdb/14540] New: GDB for ARM target fails to build with clang eblotml at free dot fr @ 2012-09-03 9:17 ` palves at redhat dot com 2012-09-03 9:19 ` palves at redhat dot com ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: palves at redhat dot com @ 2012-09-03 9:17 UTC (permalink / raw) To: gdb-prs http://sourceware.org/bugzilla/show_bug.cgi?id=14540 Pedro Alves <palves at redhat dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |palves at redhat dot com Component|gdb |sim -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug sim/14540] GDB for ARM target fails to build with clang 2012-09-02 10:40 [Bug gdb/14540] New: GDB for ARM target fails to build with clang eblotml at free dot fr 2012-09-03 9:17 ` [Bug sim/14540] " palves at redhat dot com @ 2012-09-03 9:19 ` palves at redhat dot com 2012-09-03 10:13 ` cvs-commit at gcc dot gnu.org ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: palves at redhat dot com @ 2012-09-03 9:19 UTC (permalink / raw) To: gdb-prs http://sourceware.org/bugzilla/show_bug.cgi?id=14540 Pedro Alves <palves at redhat dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nickc at redhat dot com -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug sim/14540] GDB for ARM target fails to build with clang 2012-09-02 10:40 [Bug gdb/14540] New: GDB for ARM target fails to build with clang eblotml at free dot fr 2012-09-03 9:17 ` [Bug sim/14540] " palves at redhat dot com 2012-09-03 9:19 ` palves at redhat dot com @ 2012-09-03 10:13 ` cvs-commit at gcc dot gnu.org 2012-09-03 10:15 ` nickc at redhat dot com 2012-09-03 11:13 ` eblot.ml at gmail dot com 4 siblings, 0 replies; 6+ messages in thread From: cvs-commit at gcc dot gnu.org @ 2012-09-03 10:13 UTC (permalink / raw) To: gdb-prs http://sourceware.org/bugzilla/show_bug.cgi?id=14540 --- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> 2012-09-03 10:13:23 UTC --- CVSROOT: /cvs/src Module name: src Changes by: nickc@sourceware.org 2012-09-03 10:13:12 Modified files: sim/arm : ChangeLog armsupp.c Log message: PR sim/14540 * armsupp.c (ARMul_MRC): Return 0 if access to the MRC instruction is denied. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/src/sim/arm/ChangeLog.diff?cvsroot=src&r1=1.118&r2=1.119 http://sourceware.org/cgi-bin/cvsweb.cgi/src/sim/arm/armsupp.c.diff?cvsroot=src&r1=1.11&r2=1.12 -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug sim/14540] GDB for ARM target fails to build with clang 2012-09-02 10:40 [Bug gdb/14540] New: GDB for ARM target fails to build with clang eblotml at free dot fr ` (2 preceding siblings ...) 2012-09-03 10:13 ` cvs-commit at gcc dot gnu.org @ 2012-09-03 10:15 ` nickc at redhat dot com 2012-09-03 11:13 ` eblot.ml at gmail dot com 4 siblings, 0 replies; 6+ messages in thread From: nickc at redhat dot com @ 2012-09-03 10:15 UTC (permalink / raw) To: gdb-prs http://sourceware.org/bugzilla/show_bug.cgi?id=14540 Nick Clifton <nickc at redhat dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Nick Clifton <nickc at redhat dot com> 2012-09-03 10:14:55 UTC --- Hi Emmanual, Thank you for reporting this problem. I have applied a simple fix - to have ARMul_MRC return 0 when the instruction is not allowed. Cheers Nick -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug sim/14540] GDB for ARM target fails to build with clang 2012-09-02 10:40 [Bug gdb/14540] New: GDB for ARM target fails to build with clang eblotml at free dot fr ` (3 preceding siblings ...) 2012-09-03 10:15 ` nickc at redhat dot com @ 2012-09-03 11:13 ` eblot.ml at gmail dot com 4 siblings, 0 replies; 6+ messages in thread From: eblot.ml at gmail dot com @ 2012-09-03 11:13 UTC (permalink / raw) To: gdb-prs http://sourceware.org/bugzilla/show_bug.cgi?id=14540 --- Comment #3 from Emmanuel Blot <eblot.ml at gmail dot com> 2012-09-03 11:13:05 UTC --- Hi Nick, Ok, thanks. -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-09-03 11:13 UTC | newest] Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2012-09-02 10:40 [Bug gdb/14540] New: GDB for ARM target fails to build with clang eblotml at free dot fr 2012-09-03 9:17 ` [Bug sim/14540] " palves at redhat dot com 2012-09-03 9:19 ` palves at redhat dot com 2012-09-03 10:13 ` cvs-commit at gcc dot gnu.org 2012-09-03 10:15 ` nickc at redhat dot com 2012-09-03 11:13 ` eblot.ml at gmail dot com
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).