+2004-06-13 Steven Bosscher <stevenb@suse.de>
+
+ * gcse.c (hash_scan_set, hash_scan_insn, mark_set, mark_oprs_set):
+ Revert previous change, don't use CALL_P.
+
2004-06-13 Jason Merrill <jason@redhat.com>
* tree.h: Move std_gimplify_va_arg_expr protoype here.
rtx dest = SET_DEST (pat);
rtx note;
- if (CALL_P (src))
+ if (GET_CODE (src) == CALL)
hash_scan_call (src, insn, table);
else if (REG_P (dest))
hash_scan_set (x, insn, table);
else if (GET_CODE (x) == CLOBBER)
hash_scan_clobber (x, insn, table);
- else if (CALL_P (x))
+ else if (GET_CODE (x) == CALL)
hash_scan_call (x, insn, table);
}
else if (GET_CODE (pat) == CLOBBER)
hash_scan_clobber (pat, insn, table);
- else if (CALL_P (pat))
+ else if (GET_CODE (pat) == CALL)
hash_scan_call (pat, insn, table);
}
else if (MEM_P (dest))
record_last_mem_set_info (insn);
- if (CALL_P (SET_SRC (pat)))
+ if (GET_CODE (SET_SRC (pat)) == CALL)
mark_call (insn);
}
mark_set (x, insn);
else if (GET_CODE (x) == CLOBBER)
mark_clobber (x, insn);
- else if (CALL_P (x))
+ else if (GET_CODE (x) == CALL)
mark_call (insn);
}
else if (GET_CODE (pat) == CLOBBER)
mark_clobber (pat, insn);
- else if (CALL_P (pat))
+ else if (GET_CODE (pat) == CALL)
mark_call (insn);
}