From: Sean Callanan Date: Fri, 23 Apr 2010 01:56:36 +0000 (+0000) Subject: Fixed EDOperand to use the operand type, not the X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d8993a3f92e4ff2f0bc00fa3c23ec7262bbb9962;p=oota-llvm.git 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 495c0574d6c..ca8bac1c5b4 100644 --- a/tools/edis/EDOperand.cpp +++ b/tools/edis/EDOperand.cpp @@ -227,7 +227,9 @@ uint64_t EDOperand::immediateVal() { } int EDOperand::isMemory() { - switch (Inst.ThisInstInfo->operandFlags[OpIndex]) { + uint8_t operandType = Inst.ThisInstInfo->operandTypes[OpIndex]; + + switch (operandType) { default: return 0; case kOperandTypeX86Memory: