summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2022-06-21 18:15:10 -0400
committerTakashi Kokubun <takashikkbn@gmail.com>2022-08-29 08:46:58 -0700
commit0a96a3918970f1852e1bd691c826c904bccd60b8 (patch)
tree40eee90952d340cb365e79f68e3dde04a4545eff
parentf1b188143b0255cef498ce4fb7a331daca64e063 (diff)
Delete dbg!() calls
-rw-r--r--yjit/src/backend/ir.rs1
-rw-r--r--yjit/src/backend/x86_64/mod.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/yjit/src/backend/ir.rs b/yjit/src/backend/ir.rs
index 66a498fb30..96b314e9cb 100644
--- a/yjit/src/backend/ir.rs
+++ b/yjit/src/backend/ir.rs
@@ -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)
diff --git a/yjit/src/backend/x86_64/mod.rs b/yjit/src/backend/x86_64/mod.rs
index 93e3e3f458..f4e0d4f53a 100644
--- a/yjit/src/backend/x86_64/mod.rs
+++ b/yjit/src/backend/x86_64/mod.rs
@@ -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);
}