summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-03 05:42:53 +0000
committerChris Lattner <sabre@nondot.org>2002-12-03 05:42:53 +0000
commit4ce42a776a98ec0cc8583ce8552eddbf835eb06e (patch)
tree28701d537aa0dc89fe1935116e7b5a4ee15d62b2 /lib/Target/X86/X86.h
parent6af204077cf749121a068b6b8c28293161c048c4 (diff)
downloadllvm-4ce42a776a98ec0cc8583ce8552eddbf835eb06e.tar.gz
llvm-4ce42a776a98ec0cc8583ce8552eddbf835eb06e.tar.bz2
llvm-4ce42a776a98ec0cc8583ce8552eddbf835eb06e.tar.xz
* Move information about Implicit Defs/Uses into X86InstrInfo.def.
* Expose information about implicit defs/uses of register through the MachineInstrInfo.h file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4877 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86.h')
-rw-r--r--lib/Target/X86/X86.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86.h b/lib/Target/X86/X86.h
index 10bc017993..f2db74eed0 100644
--- a/lib/Target/X86/X86.h
+++ b/lib/Target/X86/X86.h
@@ -52,7 +52,7 @@ namespace X86 {
// This defines a large number of symbolic names for X86 instruction opcodes.
enum Opcode {
-#define I(ENUM, NAME, BASEOPCODE, FLAGS, TSFLAGS) ENUM,
+#define I(ENUM, NAME, BASEOPCODE, FLAGS, TSFLAGS, IMPDEFS, IMPUSES) ENUM,
#include "X86InstrInfo.def"
};
}