From: oharboe at B. <oh...@ma...> - 2009-08-26 12:03:56
|
Author: oharboe Date: 2009-08-26 12:03:54 +0200 (Wed, 26 Aug 2009) New Revision: 2629 Modified: trunk/src/target/arm7_9_common.c Log: Remove bogus "BUG:". If the PC is pointing to an invalid instruction, then simulation will fail. This is expected. Modified: trunk/src/target/arm7_9_common.c =================================================================== --- trunk/src/target/arm7_9_common.c 2009-08-26 08:32:03 UTC (rev 2628) +++ trunk/src/target/arm7_9_common.c 2009-08-26 10:03:54 UTC (rev 2629) @@ -1833,7 +1833,7 @@ { uint32_t current_opcode; target_read_u32(target, current_pc, ¤t_opcode); - LOG_ERROR("BUG: couldn't calculate PC of next instruction, current opcode was 0x%8.8" PRIx32 "", current_opcode); + LOG_ERROR("Couldn't calculate PC of next instruction, current opcode was 0x%8.8" PRIx32 "", current_opcode); return retval; } @@ -2038,7 +2038,7 @@ { uint32_t current_opcode; target_read_u32(target, current_pc, ¤t_opcode); - LOG_ERROR("BUG: couldn't calculate PC of next instruction, current opcode was 0x%8.8" PRIx32 "", current_opcode); + LOG_ERROR("Couldn't calculate PC of next instruction, current opcode was 0x%8.8" PRIx32 "", current_opcode); return retval; } |