2000-10-04 Kazu Hirata <kazu@hxi.com>

* ia64-gen.c: Convert C++-style comments to C-style comments.
	* tic54x-dis.c: Likewise.
This commit is contained in:
Kazu Hirata 2000-10-04 06:38:01 +00:00
parent 56d27c17b8
commit d1e28e240d
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2000-10-04 Kazu Hirata <kazu@hxi.com>
* ia64-gen.c: Convert C++-style comments to C-style comments.
* tic54x-dis.c: Likewise.
2000-09-29 Hans-Peter Nilsson <hp@axis.com> 2000-09-29 Hans-Peter Nilsson <hp@axis.com>
Changes to add dollar prefix to registers for files where user symbols Changes to add dollar prefix to registers for files where user symbols

View File

@ -177,7 +177,7 @@ struct rdep
int nchks; int nchks;
int total_chks; /* total #of terminal insns */ int total_chks; /* total #of terminal insns */
int *chks; /* insn classes which read (RAW), write int *chks; /* insn classes which read (RAW), write
(WAW), or write (WAR) this rsrc */ // (WAW), or write (WAR) this rsrc */
int *chknotes; /* dependency notes for each class */ int *chknotes; /* dependency notes for each class */
int nregs; int nregs;
int total_regs; /* total #of terminal insns */ int total_regs; /* total #of terminal insns */
@ -461,7 +461,7 @@ fetch_insn_class(const char *full_name, int create)
existing class or terminal with the same name. */ existing class or terminal with the same name. */
if ((xsect || comment || notestr) && is_class) if ((xsect || comment || notestr) && is_class)
{ {
// first, populate with the class we're based on /* First, populate with the class we're based on. */
char *subname = name; char *subname = name;
if (xsect) if (xsect)
*xsect = 0; *xsect = 0;

View File

@ -558,7 +558,7 @@ sprint_mmr (info, buf, mmr)
} }
++reg; ++reg;
} }
sprintf (buf, "MMR(%d)", mmr); // FIXME -- different targets sprintf (buf, "MMR(%d)", mmr); /* FIXME -- different targets. */
return 0; return 0;
} }