diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-02-05 17:27:28 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-02-08 14:50:48 +0000 |
commit | 37fd5b53ba688e2a32d3966870361e667381ca95 (patch) | |
tree | 2694cac793e519d4f3ad68d225c310fc75973462 /disas/libvixl/globals.h | |
parent | 878a735d009d1e90e96d6c5c6f9471aa4ec2ba65 (diff) |
disas/libvixl: Fix upstream libvixl compilation issues
Fix various minor issues with upstream libvixl so that it will compile
successfully on the platforms QEMU cares about:
* remove unused GBytes constant (it clashes with the glib headers)
* fix suffixes on constants to use 'LL' for 64 bit constants so
we can compile on 32 bit hosts
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'disas/libvixl/globals.h')
-rw-r--r-- | disas/libvixl/globals.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/disas/libvixl/globals.h b/disas/libvixl/globals.h index 859ea6942c..a6a3fccd8a 100644 --- a/disas/libvixl/globals.h +++ b/disas/libvixl/globals.h @@ -44,7 +44,6 @@ typedef uint8_t byte; const int KBytes = 1024; const int MBytes = 1024 * KBytes; -const int GBytes = 1024 * MBytes; #define ABORT() printf("in %s, line %i", __FILE__, __LINE__); abort() #ifdef DEBUG |