libvixl: Fix wrong format strings
commitc7d985c025876d19208743ba06d3d55ee9e4e0b3
authorStefan Weil <sw@weilnetz.de>
Wed, 18 Jun 2014 17:44:45 +0000 (18 19:44 +0200)
committerStefan Weil <sw@weilnetz.de>
Wed, 18 Jun 2014 18:01:14 +0000 (18 20:01 +0200)
tree8a47df9c6e5261a4c3a040b7bd97ebfb093c81a0
parentf27c3741221d0eb9bbf763bdcd2a58df72ef3dc8
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>
disas/libvixl/a64/disasm-a64.cc