aboutsummaryrefslogtreecommitdiff
path: root/src/comp
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-12-20 11:40:33 -0800
committerGraydon Hoare <[email protected]>2010-12-20 11:41:32 -0800
commit6a8518c97bd5ef484e8046531c711661ede91d89 (patch)
treee2a9494f735be7b87dae95310010ba1f77d82246 /src/comp
parentrustc: Build tydescs for types, and make all take and drop operations go thro... (diff)
downloadrust-6a8518c97bd5ef484e8046531c711661ede91d89.tar.xz
rust-6a8518c97bd5ef484e8046531c711661ede91d89.zip
Trailing whitespace police.
Diffstat (limited to 'src/comp')
-rw-r--r--src/comp/middle/trans.rs4
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)) {