Allow isDebug inquiry on any MO.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95818 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen 2010-02-10 23:03:20 +00:00
parent 5e2b05a71e
commit 9a722caa26

View File

@ -220,7 +220,6 @@ public:
bool isDebug() const {
assert(isReg() && "Wrong MachineOperand accessor");
assert(!isDef() && "Wrong MachineOperand accessor");
return IsDebug;
}