Remove true and false ARI checks now that we use stdbool.h.
authorMark Wielaard <mjw@redhat.com>
Thu, 12 Feb 2015 15:51:53 +0000 (16:51 +0100)
committerMark Wielaard <mjw@redhat.com>
Mon, 16 Feb 2015 10:08:05 +0000 (11:08 +0100)
gdb/ChangeLog:

* contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".

gdb/ChangeLog
gdb/contrib/ari/gdb_ari.sh

index 0bd07928ecaf378b122fb06555a91015e7efa712..396fbd0b981d18fc98e92819ce27ca8c0b1d7682 100644 (file)
@@ -1,3 +1,7 @@
+2015-02-12  Mark Wielaard  <mjw@redhat.com>
+
+       * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
+
 2015-02-13  Doug Evans  <dje@google.com>
 
        * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
index b868a17e175950196c6f30ab3aafc1f352ff74dc..52d8ab1a08a270fa327dbb2fb4deb7dc0739d017 100644 (file)
@@ -1145,26 +1145,6 @@ Do not use `boolean'\'',  use `int'\'' instead"
     }
 }
 
-BEGIN { doc["false"] = "\
-Definitely do not use `false'\'' in boolean expressions"
-    category["false"] = ari_regression
-}
-/(^|[^_[:alnum:]])false([^_[:alnum:]]|$)/ {
-    if (is_yacc_or_lex == 0) {
-       fail("false")
-    }
-}
-
-BEGIN { doc["true"] = "\
-Do not try to use `true'\'' in boolean expressions"
-    category["true"] = ari_regression
-}
-/(^|[^_[:alnum:]])true([^_[:alnum:]]|$)/ {
-    if (is_yacc_or_lex == 0) {
-       fail("true")
-    }
-}
-
 # Typedefs that are either redundant or can be reduced to `struct
 # type *''.
 # Must be placed before if assignment otherwise ARI exceptions
This page took 0.028271 seconds and 4 git commands to generate.