mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 01:29:52 +00:00
Revert part of cleanup to fix a build break
Wasn't sure I could include ErrorHandling.h here, and evidently I wasn't building this part (must've made the change using sed after getting tired of fixing each compilation error individually). llvm-svn: 291204
This commit is contained in:
parent
201f0f5502
commit
a77ec68e50
@ -115,13 +115,18 @@ uint32_t DNBDataRef::GetMax32(offset_t *offset_ptr, uint32_t byte_size) const {
|
||||
switch (byte_size) {
|
||||
case 1:
|
||||
return Get8(offset_ptr);
|
||||
break;
|
||||
case 2:
|
||||
return Get16(offset_ptr);
|
||||
break;
|
||||
case 4:
|
||||
return Get32(offset_ptr);
|
||||
break;
|
||||
default:
|
||||
llvm_unreachable("GetMax32 unhandled case!");
|
||||
assert(!"GetMax32 unhandled case!");
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
@ -134,15 +139,21 @@ uint64_t DNBDataRef::GetMax64(offset_t *offset_ptr, uint32_t size) const {
|
||||
switch (size) {
|
||||
case 1:
|
||||
return Get8(offset_ptr);
|
||||
break;
|
||||
case 2:
|
||||
return Get16(offset_ptr);
|
||||
break;
|
||||
case 4:
|
||||
return Get32(offset_ptr);
|
||||
break;
|
||||
case 8:
|
||||
return Get64(offset_ptr);
|
||||
break;
|
||||
default:
|
||||
llvm_unreachable("GetMax64 unhandled case!");
|
||||
assert(!"GetMax64 unhandled case!");
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user