summaryrefslogtreecommitdiff
path: root/ld/emultempl/aix.em
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2004-10-27 15:53:21 +0000
committerNick Clifton <nickc@redhat.com>2004-10-27 15:53:21 +0000
commit379ee80b48ee55bed0f705665d855597124480e2 (patch)
tree168129963357cd4cd1134656dd9c9064f8fe01b5 /ld/emultempl/aix.em
parentccc2077fcaef68f6bc4a519e787706cdc017ef3e (diff)
downloadbinutils-redhat-379ee80b48ee55bed0f705665d855597124480e2.tar.gz
emultempl/alphaelf.em (alpha_after_parse): Add extra, NULL, parameter to
invocation of lang_section_start. emultempl/aix.em (_handle_option): Likewise. Makefile.am (eelf64alpha.c, eelf64alpha_fbsd.c, eelf64alpha_nbsd.c): Add dependency upon emultempl/alphaelf.em. Makefile.in: Regenerate.
Diffstat (limited to 'ld/emultempl/aix.em')
-rw-r--r--ld/emultempl/aix.em8
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/emultempl/aix.em b/ld/emultempl/aix.em
index 513cd50d85..72c865dd14 100644
--- a/ld/emultempl/aix.em
+++ b/ld/emultempl/aix.em
@@ -303,7 +303,7 @@ gld${EMULATION_NAME}_handle_option (int optc)
if (*end != '\0')
einfo ("%P: warning: ignoring invalid -D number %s\n", optarg);
else if (val != -1)
- lang_section_start (".data", exp_intop (val));
+ lang_section_start (".data", exp_intop (val), NULL);
break;
case 'H':
@@ -328,7 +328,7 @@ gld${EMULATION_NAME}_handle_option (int optc)
val = bfd_scan_vma (optarg, &end, 0);
if (*end != '\0')
return FALSE;
- lang_section_start (".text", exp_intop (val));
+ lang_section_start (".text", exp_intop (val), NULL);
break;
case OPTION_IGNORE:
@@ -463,7 +463,7 @@ gld${EMULATION_NAME}_handle_option (int optc)
t = exp_binop ('&',
exp_binop ('+', t, exp_intop (31)),
exp_intop (~(bfd_vma) 31));
- lang_section_start (".data", t);
+ lang_section_start (".data", t, NULL);
}
break;
@@ -484,7 +484,7 @@ gld${EMULATION_NAME}_handle_option (int optc)
t = exp_binop ('&',
exp_binop ('+', t, exp_intop (31)),
exp_intop (~(bfd_vma) 31));
- lang_section_start (".text", t);
+ lang_section_start (".text", t, NULL);
}
break;