* tree-vrp.c (infer_nonnull_range): Use is_gimple_call,
ignore internal calls.
From-SVN: r203427
+2013-10-11 Jakub Jelinek <jakub@redhat.com>
+
+ * tree-vrp.c (infer_nonnull_range): Use is_gimple_call,
+ ignore internal calls.
+
2013-10-11 Richard Biener <rguenther@suse.de>
* tree-pretty-print.c (dump_generic_node): Allow to dump
if (num_loads + num_stores > 0)
return true;
- if (gimple_code (stmt) == GIMPLE_CALL)
+ if (is_gimple_call (stmt) && !gimple_call_internal_p (stmt))
{
tree fntype = gimple_call_fntype (stmt);
tree attrs = TYPE_ATTRIBUTES (fntype);