diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-09-29 00:34:06 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-09-29 00:34:06 +0000 |
commit | 131628cb40d057a4ff5dbe14ce322215438c7026 (patch) | |
tree | 66bdb99acba6fcb60bb7b0aae3058aa767c6a608 /gnu | |
parent | fa2e65882c864c032028ec34cb6da1daa89d0129 (diff) |
garbage collect obsolete or unused macros - TARGET_ENDIAN_DEFAULT,
PREFERRED_DEBUGGING_TYPE and ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL.
ok kettenis@ martin@
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/gcc/gcc/config/alpha/openbsd.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gnu/usr.bin/gcc/gcc/config/alpha/openbsd.h b/gnu/usr.bin/gcc/gcc/config/alpha/openbsd.h index 7f4a3e6b1ee..d0175ef1615 100644 --- a/gnu/usr.bin/gcc/gcc/config/alpha/openbsd.h +++ b/gnu/usr.bin/gcc/gcc/config/alpha/openbsd.h @@ -18,9 +18,6 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* We settle for little endian for now. */ -#define TARGET_ENDIAN_DEFAULT 0 - /* Controlling the compilation driver. */ /* alpha needs __start. */ @@ -63,23 +60,8 @@ Boston, MA 02111-1307, USA. */ #undef WCHAR_TYPE_SIZE #define WCHAR_TYPE_SIZE 32 - -/* #undef PREFERRED_DEBUGGING_TYPE */ -/* #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG */ - /* Output and generation of labels. */ #define LOCAL_LABEL_PREFIX "." /* .set on alpha is not used to output labels. */ #undef SET_ASM_OP - -/* So, provide corresponding default, without the .set. */ -#undef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL -#define ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL(FILE, SY, HI, LO) \ - do { \ - assemble_name (FILE, SY); \ - fputc ('=', FILE); \ - assemble_name (FILE, HI); \ - fputc ('-', FILE); \ - assemble_name (FILE, LO); \ - } while (0) |