Skip to content

Commit

Permalink
Remove dbg macros from move-mv-llvm-compiler (move-language#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
brson authored and ksolana committed Jul 17, 2023
1 parent 2ae3eaa commit 04177cb
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,6 @@ impl<'mm, 'up> FunctionContext<'mm, 'up> {
}
}

dbg!(&fn_data);

let ll_fn = &self.fn_decls[&self.env.get_qualified_id()];

// Create basic blocks and position builder at entry block
Expand Down Expand Up @@ -1045,8 +1043,6 @@ impl<'mm, 'up> FunctionContext<'mm, 'up> {
dst: &[mast::TempIndex],
src: &[mast::TempIndex],
) {
dbg!((mod_id, fun_id, types, dst, src));

let typarams = self.get_rttydesc_ptrs(types);

let dst_locals = dst.iter().map(|i| &self.locals[*i]).collect::<Vec<_>>();
Expand Down Expand Up @@ -1092,8 +1088,6 @@ impl<'mm, 'up> FunctionContext<'mm, 'up> {
dst: &[mast::TempIndex],
src: &[mast::TempIndex],
) {
dbg!((mod_id, fun_id, types, dst, src));

// Handle native function calls specially.
{
let global_env = &self.env.module_env.env;
Expand Down

0 comments on commit 04177cb

Please sign in to comment.