about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2010-12-20 11:40:33 -0800
committerGraydon Hoare <graydon@mozilla.com>2010-12-20 11:41:32 -0800
commit6a8518c97bd5ef484e8046531c711661ede91d89 (patch)
treee2a9494f735be7b87dae95310010ba1f77d82246 /src
parenta7e9984999121c84c92a3236f29d4edf649e9431 (diff)
Trailing whitespace police.
Diffstat (limited to 'src')
-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 c40b2d0dd8a..d4cd64bdc5f 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)) {