From: oharboe Date: Mon, 4 May 2009 11:06:21 +0000 (+0000) Subject: Mariano Alvira fixes warnings X-Git-Tag: v0.2.0~904 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=03fdabaaacaf745455902e46f6978f4e2f988ba1;p=openocd Mariano Alvira fixes warnings git-svn-id: svn://svn.berlios.de/openocd/trunk@1601 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/target/etb.c b/src/target/etb.c index b96ffe31..d9b06747 100644 --- a/src/target/etb.c +++ b/src/target/etb.c @@ -448,7 +448,7 @@ static int handle_etb_config_command(struct command_context_s *cmd_ctx, char *cm arm7_9->etm_ctx->capture_driver_priv = etb; etb->tap = tap; - etb->cur_scan_chain = ~0UL; + etb->cur_scan_chain = 0xffffffff; etb->reg_cache = NULL; etb->ram_width = 0; etb->ram_depth = 0; diff --git a/src/target/etm.c b/src/target/etm.c index 41897ec0..c60cc0d7 100644 --- a/src/target/etm.c +++ b/src/target/etm.c @@ -992,9 +992,9 @@ static int etmv1_analyze_trace(etm_context_t *ctx, struct command_context_s *cmd if ((pipestat == STAT_IE) || (pipestat == STAT_ID)) { if (((instruction.type == ARM_B) || - (instruction.type == ARM_BL) || - (instruction.type == ARM_BLX)) && - (instruction.info.b_bl_bx_blx.target_address != ~0UL)) + (instruction.type == ARM_BL) || + (instruction.type == ARM_BLX)) && + (instruction.info.b_bl_bx_blx.target_address != 0xffffffff)) { next_pc = instruction.info.b_bl_bx_blx.target_address; } diff --git a/src/target/xscale.c b/src/target/xscale.c index c3b8d335..dec1ede9 100644 --- a/src/target/xscale.c +++ b/src/target/xscale.c @@ -2933,7 +2933,7 @@ int xscale_analyze_trace(target_t *target, command_context_t *cmd_ctx) (((instruction.type == ARM_B) || (instruction.type == ARM_BL) || (instruction.type == ARM_BLX)) && - (instruction.info.b_bl_bx_blx.target_address != ~0UL))) + (instruction.info.b_bl_bx_blx.target_address != 0xffffffff))) { xscale->trace.current_pc = instruction.info.b_bl_bx_blx.target_address; }