Skip to content

Commit d300337

Browse files
committed
[lldb] Add cast to fix compile error on 32-but platforms
1 parent ebe741f commit d300337

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/DataFormatters/FormatterBytecode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ llvm::Error Interpret(std::vector<ControlStackElement> &control,
486486
TYPE_CHECK(Object, String);
487487
auto name = data.Pop<std::string>();
488488
POP_VALOBJ(valobj);
489-
data.Push(valobj->GetIndexOfChildWithName(name));
489+
data.Push((uint64_t)valobj->GetIndexOfChildWithName(name));
490490
break;
491491
}
492492
case sel_get_type: {

0 commit comments

Comments
 (0)