* pe-arm-wince.c (LOCAL_LABEL_PREFIX): Define as ".".
* pei-arm-wince.c (LOCAL_LABEL_PREFIX): Likewise. * coff-arm.c (LOCAL_LABEL_PREFIX): Only define if not defined before. * gas/arm/undefined.d: Run test on Windows CE. * gas/arm/undefined_coff.d: Don't run test on Windows CE.
This commit is contained in:
parent
d81afd0c00
commit
d66dff9480
7 changed files with 47 additions and 28 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-11-10 Pedro Alves <pedro_alves@portugalmail.pt>
|
||||
|
||||
* pe-arm-wince.c (LOCAL_LABEL_PREFIX): Define as ".".
|
||||
* pei-arm-wince.c (LOCAL_LABEL_PREFIX): Likewise.
|
||||
* coff-arm.c (LOCAL_LABEL_PREFIX): Only define if not defined before.
|
||||
|
||||
2006-11-07 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* elf32-arm.c (find_thumb_glue): Add ERROR_MESSAGE argument; set it
|
||||
|
|
|
@ -2424,7 +2424,9 @@ Warning: Clearing the interworking flag of %B because non-interworking code in %
|
|||
|
||||
/* Note: the definitions here of LOCAL_LABEL_PREFIX and USER_LABEL_PREIFX
|
||||
*must* match the definitions in gcc/config/arm/{coff|semi|aout}.h. */
|
||||
#ifndef LOCAL_LABEL_PREFIX
|
||||
#define LOCAL_LABEL_PREFIX ""
|
||||
#endif
|
||||
#ifndef USER_LABEL_PREFIX
|
||||
#define USER_LABEL_PREFIX "_"
|
||||
#endif
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
/* BFD back-end for ARM WINCE PE files.
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of BFD, the Binary File Descriptor library.
|
||||
This file is part of BFD, the Binary File Descriptor library.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
|
||||
|
||||
#define TARGET_UNDERSCORE 0
|
||||
#define USER_LABEL_PREFIX ""
|
||||
|
@ -32,4 +32,6 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
|||
#define bfd_arm_process_before_allocation \
|
||||
bfd_arm_wince_pe_process_before_allocation
|
||||
|
||||
#define LOCAL_LABEL_PREFIX "."
|
||||
|
||||
#include "pe-arm.c"
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
/* BFD back-end for ARM WINCE PE IMAGE COFF files.
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of BFD, the Binary File Descriptor library.
|
||||
This file is part of BFD, the Binary File Descriptor library.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
|
||||
|
||||
#define TARGET_UNDERSCORE 0
|
||||
#define USER_LABEL_PREFIX ""
|
||||
|
@ -25,4 +25,6 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
|||
#define TARGET_BIG_SYM arm_wince_pei_big_vec
|
||||
#define TARGET_BIG_NAME "pei-arm-wince-big"
|
||||
|
||||
#define LOCAL_LABEL_PREFIX "."
|
||||
|
||||
#include "pei-arm.c"
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2006-11-10 Pedro Alves <pedro_alves@portugalmail.pt>
|
||||
|
||||
* gas/arm/undefined.d: Run test on Windows CE.
|
||||
* gas/arm/undefined_coff.d: Don't run test on Windows CE.
|
||||
|
||||
2006-11-09 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* gas/i386/sse2.s: Test movdqa with memory destination.
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#name: Undefined local label error
|
||||
# COFF and aout based ports use a different naming convention for local labels.
|
||||
#skip: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
||||
# COFF and aout based ports, except Windows CE,
|
||||
# use a different naming convention for local labels.
|
||||
#skip: *-*-*coff *-unknown-pe *-epoc-pe *-*-*aout* *-*-netbsd *-*-riscix*
|
||||
#error-output: undefined.l
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#name: Undefined local label error
|
||||
# COFF and aout based ports use a different naming convention for local labels.
|
||||
#not-skip: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
||||
# COFF and aout based ports, except Windows CE,
|
||||
# use a different naming convention for local labels.
|
||||
#not-skip: *-*-*coff *-unknown-pe *-epoc-pe *-*-*aout* *-*-netbsd *-*-riscix*
|
||||
#error-output: undefined_coff.l
|
||||
|
|
Loading…
Reference in a new issue