Changeset 609 for branches/GNU/src/binutils/gas/itbl-ops.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/gas/itbl-ops.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 93 93 #include <string.h> 94 94 #include "itbl-ops.h" 95 #include "itbl-parse.h"95 #include <itbl-parse.h> 96 96 97 97 /* #define DEBUG */ … … 184 184 extern FILE *yyin; 185 185 extern int yyparse (void); 186 yyin = fopen (insntbl, "r"); 186 187 yyin = fopen (insntbl, FOPEN_RT); 187 188 if (yyin == 0) 188 189 { … … 191 192 return 1; 192 193 } 193 else 194 {195 while (yyparse ());196 } 194 195 while (yyparse ()) 196 ; 197 197 198 fclose (yyin); 198 199 itbl_have_entries = 1; … … 507 508 508 509 if (!name || !*name) 509 return 0; /* error! must have a opcode name/expr */510 return 0; /* error! must have an opcode name/expr */ 510 511 511 512 /* find entry in list of instructions for all processors */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.