diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-04-15 19:18:37 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-04-17 21:34:03 +0100 |
commit | ccd380876b79c3b46f85720c1be8e2cd40509460 (patch) | |
tree | 4e5beb8399191e3069d609e9db2da5d36f3ce1a1 /target-arm/op_helper.c | |
parent | c6138aabfb2a8769392d605dc1e339b3095aab6a (diff) | |
download | qemu-ccd380876b79c3b46f85720c1be8e2cd40509460.zip |
target-arm: Split out private-to-target functions into internals.h
Currently cpu.h defines a mixture of functions and types needed by
the rest of QEMU and those needed only by files within target-arm/.
Split the latter out into a new header so they aren't needlessly
exposed further than required.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Diffstat (limited to 'target-arm/op_helper.c')
-rw-r--r-- | target-arm/op_helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-arm/op_helper.c b/target-arm/op_helper.c index 21ff58e754..4193eca36a 100644 --- a/target-arm/op_helper.c +++ b/target-arm/op_helper.c @@ -18,6 +18,7 @@ */ #include "cpu.h" #include "helper.h" +#include "internals.h" #define SIGNBIT (uint32_t)0x80000000 #define SIGNBIT64 ((uint64_t)1 << 63) |