Skip to content

Commit c00a708

Browse files
committed
[lldb] Eliminate dead code (NFC)
1 parent 1593f36 commit c00a708

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lldb/source/DataFormatters/FormatterBytecode.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,8 +392,6 @@ llvm::Error Interpret(std::vector<ControlStackElement> &control,
392392
int64_t x = data.Pop<int64_t>(); \
393393
if (y > 64) \
394394
return error("shift out of bounds"); \
395-
if (y < 0) \
396-
return error("shift out of bounds"); \
397395
data.Push(x OP y); \
398396
} else \
399397
return error("unsupported data types"); \

0 commit comments

Comments
 (0)