From 61496683b3c688032328119c83ea87df3093bc08 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Sat, 17 Jun 2006 01:42:20 +0000 Subject: [PATCH] Clean up git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28851 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetInstrInfo.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index 6151c439d9d..ae271d2f6cd 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/include/llvm/Target/TargetInstrInfo.h @@ -149,8 +149,7 @@ public: const TargetRegisterClass *getInstrOperandRegClass(const TargetInstrDescriptor *II, unsigned Op) const { if (Op >= II->numOperands) { - if (!(II->Flags & M_VARIABLE_OPS)) - assert(false && "Invalid operand # of instruction"); + assert((II->Flags & M_VARIABLE_OPS)&& "Invalid operand # of instruction"); return NULL; } const TargetOperandInfo &toi = II->OpInfo[Op]; -- 2.11.0