Skip to content

Commit 3d56936

Browse files
committed
Tidy.
1 parent e182ac4 commit 3d56936

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/librustc/middle/trans/expr.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ fn trans_rvalue_stmt_unadjusted(bcx: block, expr: @ast::expr) -> block {
604604
mode: ast::expl(ast::by_val),
605605
ty: expr_ty(bcx, in)
606606
};
607-
607+
608608
unpack_result!(bcx, {
609609
callee::trans_arg_expr(bcx, inty, in, &mut cleanups,
610610
None, callee::DontAutorefArg)
@@ -647,7 +647,8 @@ fn trans_rvalue_stmt_unadjusted(bcx: block, expr: @ast::expr) -> block {
647647
};
648648
649649
if outputs.len() == 1 {
650-
let op = PointerCast(bcx, aoutputs[0], T_ptr(val_ty(outputs[0])));
650+
let op = PointerCast(bcx, aoutputs[0],
651+
T_ptr(val_ty(outputs[0])));
651652
Store(bcx, r, op);
652653
} else {
653654
for aoutputs.eachi |i, o| {

src/libsyntax/ext/asm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ pub fn expand_asm(cx: @ext_ctxt, sp: span, tts: &[ast::token_tree])
163163
MRExpr(@ast::expr {
164164
id: cx.next_id(),
165165
callee_id: cx.next_id(),
166-
node: ast::expr_inline_asm(@asm, inputs, outputs,
166+
node: ast::expr_inline_asm(@asm, inputs, outputs,
167167
@cons, volatile, alignstack),
168168
span: sp
169169
})

0 commit comments

Comments
 (0)