diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-30 09:51:20 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-30 09:51:20 +0000 |
commit | 79383c9c082e5d56618968237dad806d0eb615f3 (patch) | |
tree | 5a4ec99b6d47de6540d2be29ac64a8d79c48da87 /target-arm | |
parent | Remove memcpy32() prototype leftover from r5109 (diff) | |
download | qemu-kvm-79383c9c082e5d56618968237dad806d0eb615f3.tar.gz qemu-kvm-79383c9c082e5d56618968237dad806d0eb615f3.tar.bz2 qemu-kvm-79383c9c082e5d56618968237dad806d0eb615f3.zip |
Fix some warnings that would be generated by gcc -Wredundant-decls
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5115 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-arm')
-rw-r--r-- | target-arm/exec.h | 2 | ||||
-rw-r--r-- | target-arm/translate.c | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/target-arm/exec.h b/target-arm/exec.h index bd4910d11..c543cf4a4 100644 --- a/target-arm/exec.h +++ b/target-arm/exec.h @@ -61,5 +61,3 @@ static inline int cpu_halted(CPUState *env) { void cpu_loop_exit(void); void raise_exception(int); - -uint32_t helper_neon_mul_p8(uint32_t op1, uint32_t op2); diff --git a/target-arm/translate.c b/target-arm/translate.c index 7ba78d9fc..8381bccd6 100644 --- a/target-arm/translate.c +++ b/target-arm/translate.c @@ -29,6 +29,7 @@ #include "exec-all.h" #include "disas.h" #include "tcg-op.h" +#include "qemu-log.h" #define GEN_HELPER 1 #include "helpers.h" @@ -72,10 +73,6 @@ typedef struct DisasContext { #define DISAS_WFI 4 #define DISAS_SWI 5 -/* XXX: move that elsewhere */ -extern FILE *logfile; -extern int loglevel; - static TCGv cpu_env; /* We reuse the same 64-bit temporaries for efficiency. */ static TCGv cpu_V0, cpu_V1, cpu_M0; |