Skip to content

Commit 7a7dfc2

Browse files
committed
---
yaml --- r: 274655 b: refs/heads/stable c: 79a6373 h: refs/heads/master i: 274653: 4039e48 274651: 9cdbafa 274647: ee6edb3 274639: 8dd0804 274623: e686104
1 parent b3167fc commit 7a7dfc2

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: c0221c8897db309a79990367476177b1230bb264
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: 73132caa0bb7d9e4eb7531cc729c4323adbdee54
32+
refs/heads/stable: 79a63735730c4da0c19c46f914f8dba37fea7b5a
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/src/librustc_back/target/windows_base.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ pub fn opts() -> TargetOptions {
8484
"rsend.o".to_string()
8585
),
8686
custom_unwind_resume: true,
87-
exe_allocation_crate: super::maybe_jemalloc(),
8887

8988
.. Default::default()
9089
}

branches/stable/src/librustc_back/target/x86_64_rumprun_netbsd.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ pub fn target() -> Target {
2121
base.position_independent_executables = false;
2222
base.disable_redzone = true;
2323
base.no_default_libraries = false;
24+
base.exe_allocation_crate = "alloc_system".to_string();
2425

2526
Target {
2627
llvm_target: "x86_64-rumprun-netbsd".to_string(),

branches/stable/src/librustc_mir/build/expr/into.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl<'a,'tcx> Builder<'a,'tcx> {
6363
} else {
6464
// Body of the `if` expression without an `else` clause must return `()`, thus
6565
// we implicitly generate a `else {}` if it is not specified.
66-
this.cfg.push_assign_unit(else_block, expr_span, destination);
66+
this.cfg.push_assign_unit(else_block, expr_span, &Lvalue::ReturnPointer);
6767
else_block
6868
};
6969

0 commit comments

Comments
 (0)