diff options
| author | Graydon Hoare <[email protected]> | 2010-12-20 11:40:33 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-12-20 11:41:32 -0800 |
| commit | 6a8518c97bd5ef484e8046531c711661ede91d89 (patch) | |
| tree | e2a9494f735be7b87dae95310010ba1f77d82246 /src | |
| parent | rustc: Build tydescs for types, and make all take and drop operations go thro... (diff) | |
| download | rust-6a8518c97bd5ef484e8046531c711661ede91d89.tar.xz rust-6a8518c97bd5ef484e8046531c711661ede91d89.zip | |
Trailing whitespace police.
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp/middle/trans.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/middle/trans.rs b/src/comp/middle/trans.rs index c40b2d0d..d4cd64bd 100644 --- a/src/comp/middle/trans.rs +++ b/src/comp/middle/trans.rs @@ -629,7 +629,7 @@ fn make_generic_glue(@crate_ctxt cx, @typeck.ty t, str name, auto llrawptr = llvm.LLVMGetParam(llfn, 1u); auto llval = bcx.build.BitCast(llrawptr, llty); - + re = helper(bcx, llval, t); } else { re = res(bcx, C_nil()); @@ -1770,7 +1770,7 @@ impure fn trans_call(@block_ctxt cx, @ast.expr f, auto fn_ty = typeck.expr_ty(f); auto ret_ty = typeck.ann_to_type(ann); auto args_res = trans_args(f_res._0.bcx, args, fn_ty); - + auto real_retval = args_res._0.build.FastCall(f_res._0.val, args_res._1); auto retval; if (typeck.type_is_nil(ret_ty)) { |