From c00a708fc954f450679bf0e171029f8da4841cfb Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Tue, 10 Dec 2024 17:09:44 -0800 Subject: [PATCH] [lldb] Eliminate dead code (NFC) --- lldb/source/DataFormatters/FormatterBytecode.cpp | 2 -- 1 file changed, 2 deletions(-) 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"); \