diff --git a/lldb/source/DataFormatters/FormatterBytecode.cpp b/lldb/source/DataFormatters/FormatterBytecode.cpp index a8975494b836..f344fbaff6f0 100644 --- a/lldb/source/DataFormatters/FormatterBytecode.cpp +++ b/lldb/source/DataFormatters/FormatterBytecode.cpp @@ -392,8 +392,6 @@ llvm::Error Interpret(std::vector &control, int64_t x = data.Pop(); \ if (y > 64) \ return error("shift out of bounds"); \ - if (y < 0) \ - return error("shift out of bounds"); \ data.Push(x OP y); \ } else \ return error("unsupported data types"); \