arm_test_common: Get rid of truncation warnings

Explicitly cast the value to a u8 to show that this is intentional.
pull/8/head
Lioncash 7 years ago
parent a8bb1eb39f
commit 48733744bb

@ -65,10 +65,13 @@ boost::optional<bool> TestEnvironment::TestMemory::IsValidAddress(VAddr addr) {
}
boost::optional<u8> TestEnvironment::TestMemory::Read8(VAddr addr) {
auto iter = data.find(addr);
const auto iter = data.find(addr);
if (iter == data.end()) {
return addr; // Some arbitrary data
// Some arbitrary data
return static_cast<u8>(addr);
}
return iter->second;
}

Loading…
Cancel
Save