Skip to content

Commit 64e1ecb

Browse files
committed
Long lines
1 parent 2eea07b commit 64e1ecb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/rustc/middle/trans/base.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ fn malloc_raw_dyn(bcx: block, t: ty::t, heap: heap,
267267
fn non_gc_box_cast(bcx: block, val: ValueRef) -> ValueRef {
268268
debug!("non_gc_box_cast");
269269
add_comment(bcx, ~"non_gc_box_cast");
270-
assert(llvm::LLVMGetPointerAddressSpace(val_ty(val)) == gc_box_addrspace || bcx.unreachable);
270+
assert(llvm::LLVMGetPointerAddressSpace(val_ty(val)) == gc_box_addrspace
271+
|| bcx.unreachable);
271272
let non_gc_t = T_ptr(llvm::LLVMGetElementType(val_ty(val)));
272273
PointerCast(bcx, val, non_gc_t)
273274
}

0 commit comments

Comments
 (0)