From d405d2792d3145cf199e09fd9ce95ad09220031a Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Mon, 17 Sep 2018 18:14:38 +0000 Subject: [PATCH] Revert "[IRInterpreter] Minor cleanups, add comments. NFCI." This breaks buildbots. llvm-svn: 342404 --- lldb/source/Expression/IRInterpreter.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lldb/source/Expression/IRInterpreter.cpp b/lldb/source/Expression/IRInterpreter.cpp index ac1c401..2c08d09 100644 --- a/lldb/source/Expression/IRInterpreter.cpp +++ b/lldb/source/Expression/IRInterpreter.cpp @@ -601,13 +601,17 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function, Value *operand = ii->getOperand(oi); Type *operand_type = operand->getType(); - // Vectors are currently unsupported, give up. - if (operand_type->getTypeID() == Type::VectorTyID) + switch (operand_type->getTypeID()) { + default: + break; + case Type::VectorTyID: { if (log) log->Printf("Unsupported operand type: %s", PrintType(operand_type).c_str()); error.SetErrorString(unsupported_operand_error); return false; + } + } // The IR interpreter currently doesn't know about // 128-bit integers. As they're not that frequent, @@ -621,7 +625,7 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function, return false; } - if (auto *constant = llvm::dyn_cast(operand)) { + if (Constant *constant = llvm::dyn_cast(operand)) { if (!CanResolveConstant(constant)) { if (log) log->Printf("Unsupported constant: %s", -- 2.7.4