qemu/disas/libvixl
Stefan Weil ffebe89975 disas/libvixl: Fix wrong format strings
When the compiler is told to check the arguments of AppendToOutput,
it reports several errors of this kind:

error: format ‘%d’ expects argument of type ‘int’,
 but argument 3 has type ‘int64_t {aka long int}’ [-Werror=format]

Fix those bugs by using the correct format strings with PRId64, PRIx64.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Message-id: 1403113751-19799-1-git-send-email-sw@weilnetz.de
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2014-06-29 22:04:28 +01:00
..
a64 disas/libvixl: Fix wrong format strings 2014-06-29 22:04:28 +01:00
LICENCE
Makefile.objs disas: Implement disassembly output for A64 2014-02-08 14:50:48 +00:00
README disas/libvixl: Update README for version base 2014-06-29 22:02:52 +01:00
globals.h disas/libvixl: Update to libvixl 1.4 2014-05-13 16:09:35 +01:00
platform.h disas/libvixl: Update to libvixl 1.4 2014-05-13 16:09:35 +01:00
utils.cc disas/libvixl: Update to libvixl 1.4 2014-05-13 16:09:35 +01:00
utils.h disas/libvixl: Update to libvixl 1.4 2014-05-13 16:09:35 +01:00

README

The code in this directory is a subset of libvixl:
 https://github.com/armvixl/vixl
(specifically, it is the set of files needed for disassembly only,
taken from libvixl 1.4).
Bugfixes should preferably be sent upstream initially.

The disassembler does not currently support the entire A64 instruction
set. Notably:
 * No Advanced SIMD support.
 * Limited support for system instructions.
 * A few miscellaneous integer and floating point instructions are missing.