remove an unused macro and an unused declaration
authorTom Tromey <tromey@redhat.com>
Tue, 13 May 2014 17:35:18 +0000 (11:35 -0600)
committerTom Tromey <tromey@redhat.com>
Tue, 13 May 2014 17:47:43 +0000 (11:47 -0600)
This patch removes an unused macro from language.h.  It also removes
the declaration of a function which is not defined.

I'm checking this in as obvious.
Tested by rebuilding.

2014-05-13  Tom Tromey  <tromey@redhat.com>

* language.h (unop_type_check): Remove.
(binop_type_check): Don't declare.

gdb/ChangeLog
gdb/language.h

index 7dcb166ae0cb0697994f799aacbd3a611072e028..551c11584372c33e22c1d414a7324a21fa48c5ac 100644 (file)
@@ -1,3 +1,8 @@
+2014-05-13  Tom Tromey  <tromey@redhat.com>
+
+       * language.h (unop_type_check): Remove.
+       (binop_type_check): Don't declare.
+
 2014-05-13  Andreas Arnez  <arnez@vnet.linux.ibm.com>
 
        * s390-linux-nat.c (fill_gregset): Remove erroneous offset 4 in
index 9e95bf2668396b26ea74aeda9ec67d9f5467a7b2..73619cacf3c6f9b946fd0f536476fe3944750c64 100644 (file)
@@ -475,12 +475,6 @@ extern enum language set_language (enum language);
 
 extern int pointer_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))
-
-extern void binop_type_check (struct value *, struct value *, int);
-
 /* Error messages */
 
 extern void range_error (const char *, ...) ATTRIBUTE_PRINTF (1, 2);