* xcoffread.c (read_xcoff_symtab): Fix comment for yesterday's change.
This commit is contained in:
parent
ab93997d68
commit
e90bd60df3
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Sep 29 08:22:27 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* xcoffread.c (read_xcoff_symtab): Fix comment for yesterday's change.
|
||||||
|
|
||||||
Wed Sep 28 17:48:18 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
Wed Sep 28 17:48:18 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
* coffread.c (complete_symtab): If last_source_file is set upon
|
* coffread.c (complete_symtab): If last_source_file is set upon
|
||||||
|
|
|
@ -1405,13 +1405,12 @@ read_xcoff_symtab (objfile, nsyms)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
/* xlc and old versions of gcc put each variable in a
|
/* xlc puts each variable in a separate csect, so we get
|
||||||
separate csect, so we get an XTY_SD. But new (2.5?
|
an XTY_SD for each variable. But gcc puts several
|
||||||
2.6? something like that) gcc's put several variables
|
variables in a csect, so that each variable only gets
|
||||||
in a csect, so that each variable only gets an XTY_LD.
|
an XTY_LD. We still need to record them. This will
|
||||||
We still need to record them. This will typically be
|
typically be XMC_RW; I suspect XMC_RO and XMC_BS might
|
||||||
XMC_RW; I suspect XMC_RO and XMC_BS might be possible
|
be possible too. */
|
||||||
too. */
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue