aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86InstrInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-13 03:51:55 +0000
committerChris Lattner <sabre@nondot.org>2002-12-13 03:51:55 +0000
commita0f38c867cea507401dab03076dd5ace69f65edd (patch)
tree5c0e3be0d2cb75a249be13d275ca97466da44b71 /lib/Target/X86/X86InstrInfo.h
parenta6a382c5ca1c53d237b9598b1f9ea5e03823a124 (diff)
downloadexternal_llvm-a0f38c867cea507401dab03076dd5ace69f65edd.zip
external_llvm-a0f38c867cea507401dab03076dd5ace69f65edd.tar.gz
external_llvm-a0f38c867cea507401dab03076dd5ace69f65edd.tar.bz2
Rename MemArg* to Arg*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4979 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrInfo.h')
-rw-r--r--lib/Target/X86/X86InstrInfo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/Target/X86/X86InstrInfo.h b/lib/Target/X86/X86InstrInfo.h
index 9d26291..aa364f3 100644
--- a/lib/Target/X86/X86InstrInfo.h
+++ b/lib/Target/X86/X86InstrInfo.h
@@ -84,13 +84,13 @@ namespace X86II {
// This three-bit field describes the size of a memory operand.
// I'm just being paranoid not using the zero value; there's
// probably no reason you couldn't use it.
- MemArg8 = 0x1 << 8,
- MemArg16 = 0x2 << 8,
- MemArg32 = 0x3 << 8,
- MemArg64 = 0x4 << 8,
- MemArg80 = 0x5 << 8,
- MemArg128 = 0x6 << 8,
- MemArgMask = 0x7 << 8,
+ Arg8 = 0x1 << 8,
+ Arg16 = 0x2 << 8,
+ Arg32 = 0x3 << 8,
+ Arg64 = 0x4 << 8,
+ Arg80 = 0x5 << 8,
+ Arg128 = 0x6 << 8,
+ ArgMask = 0x7 << 8,
};
}