summaryrefslogtreecommitdiff
path: root/gdb/language.h
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2012-01-04 18:56:58 +0000
committerDoug Evans <dje@google.com>2012-01-04 18:56:58 +0000
commit7517f772518a5b6b8c99090b957af323c63e6259 (patch)
treedc96173fd565aa87f41a2986bd03a572a9097282 /gdb/language.h
parent2538013569252fa4ae3dba08fda5f5e7d042296d (diff)
downloadgdb-7517f772518a5b6b8c99090b957af323c63e6259.tar.gz
Delete #if 0'd out code.
* language.c (binop_result_type): Delete. (simple_type, ordered_type, same_type, integral_type): Delete. (numeric_type, character_type, string_type, boolean_type): Delete. (float_type, structured_type): Delete. * language.h: Update.
Diffstat (limited to 'gdb/language.h')
-rw-r--r--gdb/language.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/gdb/language.h b/gdb/language.h
index 1ebae167bdb..2ea2dcab8a6 100644
--- a/gdb/language.h
+++ b/gdb/language.h
@@ -473,26 +473,8 @@ extern enum language set_language (enum language);
/* Type predicates */
-extern int simple_type (struct type *);
-
-extern int ordered_type (struct type *);
-
-extern int same_type (struct type *, struct type *);
-
-extern int integral_type (struct type *);
-
-extern int numeric_type (struct type *);
-
-extern int character_type (struct type *);
-
-extern int boolean_type (struct type *);
-
-extern int float_type (struct type *);
-
extern int pointer_type (struct type *);
-extern int structured_type (struct type *);
-
/* Checks Binary and Unary operations for semantic type correctness. */
/* FIXME: Does not appear to be used. */
#define unop_type_check(v,o) binop_type_check((v),NULL,(o))