aboutsummaryrefslogtreecommitdiffstats
path: root/microblaze-dis.c
AgeCommit message (Collapse)AuthorFilesLines
2010-04-27microblaze: fix custom fprintfThomas Monjalon1-31/+31
Using GCC-4.2.4-1ubuntu4, there is a warning: microblaze-dis.c:792: warning: unused variable 'fprintf' Indeed, fprintf() is shadowed by a custom redefinition but is not used because of FORTIFY_SOURCE option which replace calls to fprintf() by fprintf_chk(). So, fprintf refers to the libc implementation instead of the qemu one. It's a bug. It is fixed by renaming the variable to something different of "fprintf". It prevents from hazardous shadowing. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
2010-04-17Fix format stringsArnaud Lacombe1-2/+2
This fix the following build failure: CC libdis-user/microblaze-dis.o cc1: warnings being treated as errors microblaze-dis.c: In function 'print_insn_microblaze': microblaze-dis.c:829: warning: format '%04x' expects type 'unsigned int', but argument 4 has type 'long unsigned int' microblaze-dis.c:962: warning: format '%04x' expects type 'unsigned int', but argument 4 has type 'long unsigned int' Reported-at: http://www.monstr.eu/wiki/doku.php?id=log:2010-04-13_12_10_00 Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
2010-03-07Update to a hopefully more future proof FSF addressBlue Swirl1-4/+2
See also 8167ee883931cb20c6264fc19d040ce2dc6ceaaa, 530e7615ce3c01882e582c84dc6304ab98a3d5c5 and fad6cb1a565bb73f83fc0e2654489457b489e436. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
2009-12-10microblaze: Update disasm to latest GPLv2 version.Edgar E. Iglesias1-96/+354
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
2009-10-05bdf: Remove last users of FALSE/TRUEJuan Quintela1-1/+1
This brings bfd_boolean to the wonderful world of <stdbool.h>, it is needed because it defines bdf_boolean as an enum with values true and false, and some architectures use TRUE, FALSE and give problems when you try to use <stdbool.h> Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2009-07-16Update to a hopefully more future proof FSF addressBlue Swirl1-4/+2
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
2009-06-09microblaze-dis.c does not need to be executableBlue Swirl1-0/+0
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
2009-05-26microblaze: Add disassembler.Edgar E. Iglesias1-0/+846
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>