]> git.proxmox.com Git - qemu.git/commitdiff
TCG: Remove unused global gen_opc_ arrays.
authorEvgeny Voevodin <e.voevodin@samsung.com>
Wed, 21 Nov 2012 07:43:07 +0000 (11:43 +0400)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 8 Dec 2012 14:24:43 +0000 (14:24 +0000)
Signed-off-by: Evgeny Voevodin <e.voevodin@samsung.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
exec-all.h
translate-all.c

index 21aacdab503739dfabfb8a632d910356de83af61..b18d4ca53412821ef22876febddf3addc1e233d9 100644 (file)
@@ -70,10 +70,6 @@ typedef struct TranslationBlock TranslationBlock;
 
 #define OPPARAM_BUF_SIZE (OPC_BUF_SIZE * MAX_OPC_PARAM)
 
-extern target_ulong gen_opc_pc[OPC_BUF_SIZE];
-extern uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
-extern uint16_t gen_opc_icount[OPC_BUF_SIZE];
-
 #include "qemu-log.h"
 
 void gen_intermediate_code(CPUArchState *env, struct TranslationBlock *tb);
index 2f616bf321f60a8d526face2f25769e0c853baac..f22e3eedd2c7362f3006bd191b64a9c203080df7 100644 (file)
 /* code generation context */
 TCGContext tcg_ctx;
 
-target_ulong gen_opc_pc[OPC_BUF_SIZE];
-uint16_t gen_opc_icount[OPC_BUF_SIZE];
-uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
-
 void cpu_gen_init(void)
 {
     tcg_context_init(&tcg_ctx);