PR objc/80949
* c-warn.c (do_warn_duplicated_branches): Return if any of the
branches is null.
From-SVN: r249171
+2017-06-13 Marek Polacek <polacek@redhat.com>
+
+ PR objc/80949
+ * c-warn.c (do_warn_duplicated_branches): Return if any of the
+ branches is null.
+
2017-06-13 Martin Liska <mliska@suse.cz>
PR sanitize/78204
tree thenb = COND_EXPR_THEN (expr);
tree elseb = COND_EXPR_ELSE (expr);
- /* Don't bother if there's no else branch. */
- if (elseb == NULL_TREE)
+ /* Don't bother if any of the branches is missing. */
+ if (thenb == NULL_TREE || elseb == NULL_TREE)
return;
/* And don't warn for empty statements. */