projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8d1764
)
Move around some enum elements so that lastMRM corrects gets assigned 56, which
author
Richard Trieu
<rtrieu@google.com>
Wed, 18 Jul 2012 23:04:22 +0000
(23:04 +0000)
committer
Richard Trieu
<rtrieu@google.com>
Wed, 18 Jul 2012 23:04:22 +0000
(23:04 +0000)
is one more that MRM_DF which is 55. Previously, it held value 45, the same
as MRM_D0.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160465
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/TableGen/X86RecognizableInstr.cpp
patch
|
blob
|
history
diff --git
a/utils/TableGen/X86RecognizableInstr.cpp
b/utils/TableGen/X86RecognizableInstr.cpp
index c40cc9f63c605c81ab47cdf36eff2924edb69430..6a685ffe8c277beaa6dd1039f3efed9169a9d6d2 100644
(file)
--- a/
utils/TableGen/X86RecognizableInstr.cpp
+++ b/
utils/TableGen/X86RecognizableInstr.cpp
@@
-62,11
+62,11
@@
namespace X86Local {
MRM0m = 24, MRM1m = 25, MRM2m = 26, MRM3m = 27,
MRM4m = 28, MRM5m = 29, MRM6m = 30, MRM7m = 31,
MRMInitReg = 32,
+ RawFrmImm8 = 43,
+ RawFrmImm16 = 44,
#define MAP(from, to) MRM_##from = to,
MRM_MAPPING
#undef MAP
- RawFrmImm8 = 43,
- RawFrmImm16 = 44,
lastMRM
};