Commit a101957b by Tom Tromey Committed by Tom Tromey

* c-cppbuiltin.c (define__GNUC__): Correct assertion.

From-SVN: r94019
parent a85ba5a8
2005-01-21 Tom Tromey <tromey@redhat.com>
* c-cppbuiltin.c (define__GNUC__): Correct assertion.
2005-01-21 Kazu Hirata <kazu@cs.umass.edu>
* tree-cfg.c: Fix comment typos.
......
......@@ -275,7 +275,7 @@ define__GNUC__ (void)
if (c_dialect_cxx ())
builtin_define_with_value_n ("__GNUG__", q, v - q);
gcc_assert (*v == '.' || ISDIGIT (v[1]));
gcc_assert (*v == '.' && ISDIGIT (v[1]));
q = ++v;
while (ISDIGIT (*v))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment