Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9f24b45

Browse files
author
git apple-llvm automerger
committed
Merge commit '7c178fdf0094' from llvm.org/main into next
2 parents 4a94f1d + 7c178fd commit 9f24b45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Utility/RegisterValue.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Status RegisterValue::SetValueFromData(const RegisterInfo &reg_info,
199199
else if (reg_info.byte_size <= 16) {
200200
uint64_t data1 = src.GetU64(&src_offset);
201201
uint64_t data2 = src.GetU64(&src_offset);
202-
if (src.GetByteSize() == eByteOrderBig) {
202+
if (src.GetByteOrder() == eByteOrderBig) {
203203
int128.x[0] = data1;
204204
int128.x[1] = data2;
205205
} else {

0 commit comments

Comments
 (0)