From fb0f4231333cbdf9c8d3add1bada84686eddafbe Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Fri, 18 Feb 1994 17:47:43 +0000 Subject: * defs.h, valprint.c: Make longest_to_int a function not a macro. Only test against INT_MIN if a LONGEST is bigger than an int. --- gdb/defs.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gdb/defs.h') diff --git a/gdb/defs.h b/gdb/defs.h index 0675aaf..1a49d8c 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -556,8 +556,7 @@ enum val_prettyprint arguments to a function, number in a value history, register number, etc.) where the value must not be larger than can fit in an int. */ -#define longest_to_int(x) (((x) > INT_MAX || (x) < INT_MIN) \ - ? (error ("Value out of range."),0) : (int) (x)) +extern int longest_to_int PARAMS ((LONGEST)); /* Assorted functions we can declare, now that const and volatile are defined. */ -- cgit v1.1