Commit 8d47dfc5 by Richard Henderson Committed by Jeff Law

* c-typeck.c (comptypes): Exit early on NULL input.

From-SVN: r17347
parent c995fea1
Tue Jan 13 22:39:40 1998 Richard Henderson (rth@cygnus.com)
* c-typeck.c (comptypes): Exit early on NULL input.
* haifa-sched.c (schedule_insns): Correctly remove inter-block
dependencies after reload.
......
......@@ -441,7 +441,8 @@ comptypes (type1, type2)
/* Suppress errors caused by previously reported errors. */
if (t1 == t2 || TREE_CODE (t1) == ERROR_MARK || TREE_CODE (t2) == ERROR_MARK)
if (t1 == t2 || !t1 || !t2
|| TREE_CODE (t1) == ERROR_MARK || TREE_CODE (t2) == ERROR_MARK)
return 1;
/* Treat an enum type as the integer type of the same width and
......
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