Improve documentation on local labels and add documenation about dollar labels.
[deliverable/binutils-gdb.git] / gas / itbl-ops.c
index d3650cd008974d0ce174fc337a17a41546b0d86a..729ee9837421cc6c7f11d56913c5ef456c73889b 100644 (file)
@@ -183,17 +183,18 @@ itbl_parse (char *insntbl)
 {
   extern FILE *yyin;
   extern int yyparse (void);
-  yyin = fopen (insntbl, "r");
+
+  yyin = fopen (insntbl, FOPEN_RT);
   if (yyin == 0)
     {
       printf ("Can't open processor instruction specification file \"%s\"\n",
              insntbl);
       return 1;
     }
-  else
-    {
-      while (yyparse ());
-    }
+
+  while (yyparse ())
+    ;
+
   fclose (yyin);
   itbl_have_entries = 1;
   return 0;
This page took 0.02316 seconds and 4 git commands to generate.