commit | 06b766d1c0ff7373e911fe5f8c42f62aa2f67e92 | [log] [tgz] |
---|---|---|
author | Sean Callanan <scallanan@apple.com> | Tue Dec 22 02:07:42 2009 +0000 |
committer | Sean Callanan <scallanan@apple.com> | Tue Dec 22 02:07:42 2009 +0000 |
tree | 1b6324c40ba358d19c13f4b904efdd793f551c56 | |
parent | baf2e35e1862aaaec1fb94e0a24bbb3c8ea2819d [diff] [blame] |
Changed REG_* to MODRM_REG_* to avoid conflicts with symbols in AuroraUX's global namespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91879 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h b/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h index f548c65..b7f4b2b 100644 --- a/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h +++ b/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
@@ -324,10 +324,10 @@ * Reg - All possible values of the reg field in the ModR/M byte. */ typedef enum { -#define ENTRY(x) REG_##x, +#define ENTRY(x) MODRM_REG_##x, ALL_REGS #undef ENTRY - REG_max + MODRM_REG_max } Reg; /*