diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-11-02 14:18:14 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-11-02 14:18:14 +0000 |
commit | 9f2feefc7a78826e5c4e90e528a372696d38da91 (patch) | |
tree | 29d3ad2a4984c2d08024d3a7f93314c8cf1a59bb /gdb/value.h | |
parent | 58852c27692e29c5e94038a6a0dc1023b7da239c (diff) | |
download | gdb-9f2feefc7a78826e5c4e90e528a372696d38da91.zip gdb-9f2feefc7a78826e5c4e90e528a372696d38da91.tar.gz gdb-9f2feefc7a78826e5c4e90e528a372696d38da91.tar.bz2 |
2004-11-02 Andrew Cagney <cagney@gnu.org>
* value.h (COERCE_VARYING_ARRAY): Delete.
* valops.c (value_cast, value_slice): Delete use.
* valarith.c (value_subscript, value_concat): Delete use.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/value.h b/gdb/value.h index c50c2ca..6a3814c 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -259,10 +259,6 @@ extern int value_fetch_lazy (struct value *val); #define COERCE_NUMBER(arg) \ do { COERCE_ARRAY(arg); COERCE_ENUM(arg); } while (0) -/* NOTE: cagney/2002-12-17: This macro was handling a chill language - problem but that language has gone away. */ -#define COERCE_VARYING_ARRAY(arg, real_arg_type) - /* If ARG is an enum, convert it to an integer. */ #define COERCE_ENUM(arg) \ |