* read.c (read_a_source_file): The second argument to as_where is
unsigned int *, not int *.
This commit is contained in:
parent
2fd87dbc90
commit
1b434ced73
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Sep 12 17:51:39 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
|
||||
|
||||
* read.c (read_a_source_file): The second argument to as_where is
|
||||
unsigned int *, not int *.
|
||||
|
||||
Thu Sep 8 17:18:24 1994 Kung Hsu (kung@mexican.cygnus.com)
|
||||
|
||||
* config/obj-ecoff.h : Change names to OBJ_GENERATE_ASM_LINENO,
|
||||
|
|
|
@ -554,8 +554,9 @@ read_a_source_file (name)
|
|||
}
|
||||
else
|
||||
{
|
||||
int lineno;
|
||||
char *s;
|
||||
unsigned int lineno;
|
||||
char *s;
|
||||
|
||||
as_where (&s, &lineno);
|
||||
OBJ_GENERATE_ASM_LINENO (s, lineno);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue