We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 016177b commit 3e51d60Copy full SHA for 3e51d60
src/vmm/src/arch/aarch64/mod.rs
@@ -273,7 +273,7 @@ mod verification {
273
kani::cover!();
274
275
// The very first address should be offset bytes past DRAM_MEM_START
276
- assert_eq!(regions[0].0.0, DRAM_MEM_START + offset);
+ assert_eq!(regions[0].0.0, DRAM_MEM_START + offset as u64);
277
// The first region ends at the beginning of the 64 bits gap.
278
assert_eq!(regions[0].0.0 + regions[0].1 as u64, MMIO64_MEM_START);
279
// The second region starts exactly after the 64 bits gap.
0 commit comments