Fixed EDOperand to use the operand type, not the
flags, to determine whether or not the operand is
a memory operand.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102158 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/edis/EDOperand.cpp b/tools/edis/EDOperand.cpp
index 495c057..ca8bac1 100644
--- a/tools/edis/EDOperand.cpp
+++ b/tools/edis/EDOperand.cpp
@@ -227,7 +227,9 @@
}
int EDOperand::isMemory() {
- switch (Inst.ThisInstInfo->operandFlags[OpIndex]) {
+ uint8_t operandType = Inst.ThisInstInfo->operandTypes[OpIndex];
+
+ switch (operandType) {
default:
return 0;
case kOperandTypeX86Memory: