[lldb] Eliminate dead code (NFC)

This commit is contained in:
Adrian Prantl 2024-12-10 17:09:44 -08:00
parent 1593f36935
commit c00a708fc9

View File

@ -392,8 +392,6 @@ llvm::Error Interpret(std::vector<ControlStackElement> &control,
int64_t x = data.Pop<int64_t>(); \
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"); \