tci: Remove invalid assertions
tb_jmp_insn_offset and tb_jmp_reset_offset are pointers and cannot be used with ARRAY_SIZE. Signed-off-by: Stefan Weil <sw@weilnetz.de> Acked-by: Michael S. Tsirkin <mst@redhat.com> Message-id: 20170202195601.11286-1-sw@weilnetz.de Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
		
							parent
							
								
									5b66d7ae89
								
							
						
					
					
						commit
						77e217d1bf
					
				| 
						 | 
					@ -566,7 +566,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
 | 
				
			||||||
    case INDEX_op_goto_tb:
 | 
					    case INDEX_op_goto_tb:
 | 
				
			||||||
        if (s->tb_jmp_insn_offset) {
 | 
					        if (s->tb_jmp_insn_offset) {
 | 
				
			||||||
            /* Direct jump method. */
 | 
					            /* Direct jump method. */
 | 
				
			||||||
            tcg_debug_assert(args[0] < ARRAY_SIZE(s->tb_jmp_insn_offset));
 | 
					 | 
				
			||||||
            /* Align for atomic patching and thread safety */
 | 
					            /* Align for atomic patching and thread safety */
 | 
				
			||||||
            s->code_ptr = QEMU_ALIGN_PTR_UP(s->code_ptr, 4);
 | 
					            s->code_ptr = QEMU_ALIGN_PTR_UP(s->code_ptr, 4);
 | 
				
			||||||
            s->tb_jmp_insn_offset[args[0]] = tcg_current_code_size(s);
 | 
					            s->tb_jmp_insn_offset[args[0]] = tcg_current_code_size(s);
 | 
				
			||||||
| 
						 | 
					@ -575,7 +574,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
 | 
				
			||||||
            /* Indirect jump method. */
 | 
					            /* Indirect jump method. */
 | 
				
			||||||
            TODO();
 | 
					            TODO();
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        tcg_debug_assert(args[0] < ARRAY_SIZE(s->tb_jmp_reset_offset));
 | 
					 | 
				
			||||||
        s->tb_jmp_reset_offset[args[0]] = tcg_current_code_size(s);
 | 
					        s->tb_jmp_reset_offset[args[0]] = tcg_current_code_size(s);
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
    case INDEX_op_br:
 | 
					    case INDEX_op_br:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue