projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2fd87db
)
* read.c (read_a_source_file): The second argument to as_where is
author
Ian Lance Taylor
<ian@airs.com>
Mon, 12 Sep 1994 21:52:43 +0000
(21:52 +0000)
committer
Ian Lance Taylor
<ian@airs.com>
Mon, 12 Sep 1994 21:52:43 +0000
(21:52 +0000)
unsigned int *, not int *.
gas/ChangeLog
patch
|
blob
|
history
gas/read.c
patch
|
blob
|
history
diff --git
a/gas/ChangeLog
b/gas/ChangeLog
index 6fb74972af08cff89136b6135610176920f04be2..1638b6548d4f710f712e8a665916b0346595b42c 100644
(file)
--- a/
gas/ChangeLog
+++ b/
gas/ChangeLog
@@
-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,
diff --git
a/gas/read.c
b/gas/read.c
index de455904773ad2de168e7287a9980405437072b3..d85efe833f602920bd884690c4dd9e8127d90eb2 100644
(file)
--- a/
gas/read.c
+++ b/
gas/read.c
@@
-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);
}