Skip to content

Commit

Permalink
Fix warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
ptersilie committed Feb 12, 2024
1 parent 13fc8ec commit eaebec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ykrt/src/compile/jitc_yk/aot_ir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -783,8 +783,8 @@ pub(crate) struct Global {
}

impl IRDisplay for Global {
fn to_str(&self, m: &Module) -> String {
format!("Global({})", self.name)
fn to_str(&self, _m: &Module) -> String {
format!("Global({}, tls={})", self.name, self.is_threadlocal)
}
}

Expand Down

0 comments on commit eaebec7

Please sign in to comment.