forked from Imagelibrary/binutils-gdb
* read.c (read_a_source_file): The second argument to as_where is
unsigned int *, not int *.
This commit is contained in:
@@ -549,17 +549,17 @@ read_a_source_file (name)
|
||||
#ifdef OBJ_GENERATE_ASM_LINENO
|
||||
if (generate_asm_lineno == 0)
|
||||
{
|
||||
if (ecoff_no_current_file())
|
||||
if (ecoff_no_current_file ())
|
||||
generate_asm_lineno = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (generate_asm_lineno == 1)
|
||||
{
|
||||
unsigned int lineno;
|
||||
char *s;
|
||||
|
||||
as_where (&s, &lineno);
|
||||
OBJ_GENERATE_ASM_LINENO (s, lineno);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
md_assemble (s); /* Assemble 1 instruction. */
|
||||
|
||||
Reference in New Issue
Block a user