]> git.proxmox.com Git - qemu.git/blobdiff - translate-all.c
target-arm/neon_helper.c: Use make_float32/float32_val macros
[qemu.git] / translate-all.c
index 91cbbc4929397c73e864e844ce25d1d4748c2806..efcfb9adcdc82fa6d1ef7969e11584c1956d3271 100644 (file)
@@ -41,22 +41,6 @@ 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];
 
-/* XXX: suppress that */
-unsigned long code_gen_max_block_size(void)
-{
-    static unsigned long max;
-
-    if (max == 0) {
-        max = TCG_MAX_OP_SIZE;
-#define DEF(s, n, copy_size) max = copy_size > max? copy_size : max;
-#include "tcg-opc.h"
-#undef DEF
-        max *= OPC_MAX_SIZE;
-    }
-
-    return max;
-}
-
 void cpu_gen_init(void)
 {
     tcg_context_init(&tcg_ctx);