*** empty log message ***
This commit is contained in:
parent
6408afbac5
commit
070aa81923
5 changed files with 9 additions and 5 deletions
|
@ -256,6 +256,9 @@ bfd_vma *dotp;
|
|||
FAIL();
|
||||
}
|
||||
}
|
||||
else {
|
||||
result.valid = false;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||
|
||||
/* EXPORT */
|
||||
char *ldfile_input_filename;
|
||||
CONST char * ldfile_output_machine_name;
|
||||
CONST char * ldfile_output_machine_name ="";
|
||||
unsigned long ldfile_output_machine;
|
||||
enum bfd_architecture ldfile_output_architecture;
|
||||
boolean had_script;
|
||||
|
|
|
@ -276,11 +276,10 @@ command_line_option:
|
|||
{
|
||||
ldgram_in_defsym = true;
|
||||
ldgram_in_expression = true;
|
||||
hex_mode = true;
|
||||
|
||||
}
|
||||
assignment
|
||||
{
|
||||
hex_mode = false;
|
||||
ldgram_in_defsym = false;
|
||||
ldgram_in_expression = false;
|
||||
}
|
||||
|
|
|
@ -984,7 +984,9 @@ static void
|
|||
DEFUN(print_input_statement,(statm),
|
||||
lang_input_statement_type *statm)
|
||||
{
|
||||
printf("LOAD %s\n",statm->filename);
|
||||
if (statm->filename != (char *)NULL) {
|
||||
printf("LOAD %s\n",statm->filename);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -388,7 +388,7 @@ WHITE [ \t]+
|
|||
}
|
||||
|
||||
[0-9]+[KM]? {
|
||||
if (hex_mode == true) {
|
||||
if (hex_mode == true || ldgram_in_defsym == true) {
|
||||
yylval.integer = number(yytext, 16);
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Reference in a new issue