diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/arch/arm/v7/operands/maccess.c | 5 |
2 files changed, 5 insertions, 5 deletions
@@ -1,3 +1,8 @@ +16-05-23 Cyrille Bagard <nocbos@gmail.com> + + * src/arch/arm/v7/operands/maccess.c: + Remove a stupid assertion in memory access operands. + 16-05-22 Cyrille Bagard <nocbos@gmail.com> * src/arch/arm/v7/Makefile.am: diff --git a/src/arch/arm/v7/operands/maccess.c b/src/arch/arm/v7/operands/maccess.c index e3e62fb..8eb5b57 100644 --- a/src/arch/arm/v7/operands/maccess.c +++ b/src/arch/arm/v7/operands/maccess.c @@ -24,9 +24,6 @@ #include "maccess.h" -#include <assert.h> - - #include "../../../operand-int.h" @@ -234,8 +231,6 @@ static void g_armv7_maccess_operand_print(const GArmV7MAccessOperand *operand, G if (operand->shift != NULL) { - assert(operand->not_post_indexed); - g_buffer_line_insert_text(line, BLC_ASSEMBLY, ",", 1, RTT_PUNCT); g_buffer_line_insert_text(line, BLC_ASSEMBLY, " ", 1, RTT_RAW); |