rustc: Remove some debug code

This commit is contained in:
Patrick Walton 2011-09-29 18:53:00 -07:00
parent f9e3a604a6
commit 79e4961c7f
1 changed files with 0 additions and 2 deletions

View File

@ -4014,11 +4014,9 @@ fn trans_c_stack_native_call(bcx: @block_ctxt, f: @ast::expr,
let llargbundle = PointerCast(bcx, llrawargbundle, T_ptr(llargbundlety));
// Copy in arguments.
log_err ("bundle type", val_str(ccx.tn, llargbundle));
vec::eachi({ |llarg, i|
// FIXME: This load is unfortunate.
let llargval = Load(bcx, llarg.llval);
log_err ("llarg type", val_str(ccx.tn, llargval), i);
store_inbounds(bcx, llargval, llargbundle, [C_int(0), C_uint(i)]);
}, llargs);