Use GPR_CLEAR instead of GPR_SET

This commit is contained in:
Nick Clifton 2000-05-29 19:28:53 +00:00
parent f23b768a5c
commit 86e0da7a81
2 changed files with 6 additions and 1 deletions

View file

@ -2,6 +2,11 @@ Tue May 23 21:39:23 2000 Andrew Cagney <cagney@b1.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.
2000-04-12 Frank Ch. Eigler <fche@redhat.com>
* gen-semantics.c (print_semantic_body): Use GPR_CLEAR(N) instead
of GPR_SET(N,0) for gen-zero-rN.
Thu Sep 2 18:15:53 1999 Andrew Cagney <cagney@b1.cygnus.com>
* Makefile.in (SIM_WARNINGS): Replace this with.

View file

@ -246,7 +246,7 @@ print_semantic_body (lf *file,
{
lf_printf (file, "\n");
lf_printf (file, "/* Architecture expects REG to be zero */\n");
lf_printf (file, "GPR_SET(%d, 0);\n", options.gen.zero_reg_nr);
lf_printf (file, "GPR_CLEAR(%d);\n", options.gen.zero_reg_nr);
}
/* generate the code (or at least something */