* config/tc-ppc.c (ppc_biei): Force symbol into text_section.
This commit is contained in:
parent
c93a17b7ab
commit
a3d1c56107
2 changed files with 5 additions and 5 deletions
|
@ -1,5 +1,7 @@
|
|||
Sat Nov 4 00:51:21 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* config/tc-ppc.c (ppc_biei): Force symbol into text_section.
|
||||
|
||||
* config/tc-ppc.c (md_show_usage): Put backslash at end of line.
|
||||
|
||||
Fri Nov 3 13:02:59 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
|
|
@ -2417,13 +2417,11 @@ ppc_biei (ei)
|
|||
to do the right thing. */
|
||||
|
||||
sym = symbol_make (name);
|
||||
S_SET_SEGMENT (sym, now_seg);
|
||||
S_SET_VALUE (sym, coff_n_line_nos);
|
||||
sym->bsym->flags |= BSF_DEBUGGING;
|
||||
|
||||
/* obj-coff.c currently only handles line numbers correctly in the
|
||||
.text section. */
|
||||
assert (now_seg == text_section);
|
||||
S_SET_SEGMENT (sym, text_section);
|
||||
S_SET_VALUE (sym, coff_n_line_nos);
|
||||
sym->bsym->flags |= BSF_DEBUGGING;
|
||||
|
||||
S_SET_STORAGE_CLASS (sym, ei ? C_EINCL : C_BINCL);
|
||||
sym->sy_tc.output = 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue