Skip to content

Commit

Permalink
Improved docstring slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzrehde committed Feb 6, 2024
1 parent 0cfe196 commit a2ce016
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 47 deletions.
107 changes: 62 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cranelift/wasm/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ static ALL_POSSIBLE_RANDOM_MTE_TAGS: Lazy<(usize, Vec<u8>)> = Lazy::new(|| {
/// from `EXCLUDED_MTE_TAGS`.
#[derive(Debug)]
struct RandomMteTag {
/// The 4-bit random MTE tag.
tag: u8,
/// The 4-bit random MTE tag, which is a `Value` generated at runtime.
tag: Value,
/// The index that was used to index into `ALL_POSSIBLE_RANDOM_MTE_TAGS` to
/// receive `tag`. This is stored here because it is needed to generate the
/// next random tag.
Expand Down

0 comments on commit a2ce016

Please sign in to comment.