Skip to content

Commit ee6d7fc

Browse files
committed
---
yaml --- r: 274783 b: refs/heads/stable c: 7732c0a h: refs/heads/master i: 274781: 37963c0 274779: 0155ff2 274775: af66e2e 274767: b1f6bf2 274751: c764d87
1 parent cf0df9c commit ee6d7fc

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
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: bafea3bf78e75c99958ef15fd3d06652cb63133c
32+
refs/heads/stable: 7732c0aa9ea12262cbe46fa77c2fa636e8aecf6a
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/src/liballoc_jemalloc/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ const MIN_ALIGN: usize = 8;
5656
#[cfg(all(any(target_arch = "x86",
5757
target_arch = "x86_64",
5858
target_arch = "aarch64",
59-
target_arch = "powerpc64",
60-
target_arch = "powerpc64le")))]
59+
target_arch = "powerpc64")))]
6160
const MIN_ALIGN: usize = 16;
6261

6362
// MALLOCX_ALIGN(a) macro

branches/stable/src/librustc_trans/trans/cabi_powerpc64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ fn classify_ret_ty(ccx: &CrateContext, ty: Type) -> ArgType {
158158
}
159159

160160
// The PowerPC64 big endian ABI doesn't return aggregates in registers
161-
if ccx.sess().target.target.arch == "powerpc64" {
161+
if ccx.sess().target.target.target_endian == "big" {
162162
return ArgType::indirect(ty, Some(Attribute::StructRet))
163163
}
164164

0 commit comments

Comments
 (0)