From 2f2da8fd3ff3c04928621bcbc0c01b9f9ebce7cc Mon Sep 17 00:00:00 2001 From: "Maciej W. Rozycki" Date: Mon, 4 Jan 2016 23:35:03 +0000 Subject: MIPS/LD: Convert ELF linker emulation option macros to an enum ld/ * emultempl/mipself.em (PARSE_AND_LIST_PROLOGUE): Convert OPTION_INSN32 and OPTION_NO_INSN32 macros to an enum. --- ld/emultempl/mipself.em | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'ld/emultempl') diff --git a/ld/emultempl/mipself.em b/ld/emultempl/mipself.em index 1b79aaf..dbff36b 100644 --- a/ld/emultempl/mipself.em +++ b/ld/emultempl/mipself.em @@ -250,8 +250,11 @@ EOF # parse_args and list_options functions. # PARSE_AND_LIST_PROLOGUE=' -#define OPTION_INSN32 301 -#define OPTION_NO_INSN32 (OPTION_INSN32 + 1) +enum + { + OPTION_INSN32 = 301, + OPTION_NO_INSN32 + }; ' PARSE_AND_LIST_LONGOPTS=' -- cgit v1.1