Skip to content

Commit 3e51d60

Browse files
committed
WIP: kani proofs
Signed-off-by: Babis Chalios <[email protected]>
1 parent 016177b commit 3e51d60

File tree

1 file changed

+1
-1
lines changed
  • src/vmm/src/arch/aarch64

1 file changed

+1
-1
lines changed

src/vmm/src/arch/aarch64/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ mod verification {
273273
kani::cover!();
274274

275275
// The very first address should be offset bytes past DRAM_MEM_START
276-
assert_eq!(regions[0].0.0, DRAM_MEM_START + offset);
276+
assert_eq!(regions[0].0.0, DRAM_MEM_START + offset as u64);
277277
// The first region ends at the beginning of the 64 bits gap.
278278
assert_eq!(regions[0].0.0 + regions[0].1 as u64, MMIO64_MEM_START);
279279
// The second region starts exactly after the 64 bits gap.

0 commit comments

Comments
 (0)