Skip to content

Commit

Permalink
Delete dbg!() calls
Browse files Browse the repository at this point in the history
  • Loading branch information
XrXr authored and k0kubun committed Aug 29, 2022
1 parent f1b1881 commit 0a96a39
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion yjit/src/backend/ir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,6 @@ impl Assembler
pub fn new_label(&mut self, name: &str) -> Target
{
let label_idx = self.label_names.len();
dbg!(label_idx);

self.label_names.push(name.to_string());
Target::Label(label_idx)
Expand Down
1 change: 0 additions & 1 deletion yjit/src/backend/x86_64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ impl Assembler

// Create label instances in the code block
for (idx, name) in asm.label_names.iter().enumerate() {
dbg!("creating label, idx={}", idx);
let label_idx = cb.new_label(name.to_string());
assert!(label_idx == idx);
}
Expand Down

0 comments on commit 0a96a39

Please sign in to comment.