Make instruction data opaque to runtime (#6470)
This commit is contained in:
@@ -13,8 +13,8 @@ use std::{
|
||||
sync::Mutex,
|
||||
};
|
||||
|
||||
//Data is aligned at the next 64 byte offset. Without alignment loading the memory may
|
||||
//crash on some architectures.
|
||||
// Data is aligned at the next 64 byte offset. Without alignment loading the memory may
|
||||
// crash on some architectures.
|
||||
macro_rules! align_up {
|
||||
($addr: expr, $align: expr) => {
|
||||
($addr + ($align - 1)) & !($align - 1)
|
||||
|
Reference in New Issue
Block a user