File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
29
29
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
30
30
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
- refs/heads/batch: e5bbe8244b8e8efefa26df4287f22fa3f059bd1c
32
+ refs/heads/batch: c8442afeb066656c4f4db3ca8538ee5976b504f6
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
34
refs/heads/beta: 44a287e6eb22ec3c2a687fc156813577464017f7
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ fn size_of_basic() {
22
22
#[ cfg( any( target_arch = "x86" ,
23
23
target_arch = "arm" ,
24
24
target_arch = "mips" ,
25
- target_arch = "mipsel" ) ) ]
25
+ target_arch = "mipsel" ,
26
+ target_arch = "powerpc" ) ) ]
26
27
fn size_of_32 ( ) {
27
28
assert_eq ! ( size_of:: <uint>( ) , 4 u) ;
28
29
assert_eq ! ( size_of:: <* const uint>( ) , 4 u) ;
@@ -55,7 +56,8 @@ fn align_of_basic() {
55
56
#[ cfg( any( target_arch = "x86" ,
56
57
target_arch = "arm" ,
57
58
target_arch = "mips" ,
58
- target_arch = "mipsel" ) ) ]
59
+ target_arch = "mipsel" ,
60
+ target_arch = "powerpc" ) ) ]
59
61
fn align_of_32 ( ) {
60
62
assert_eq ! ( align_of:: <uint>( ) , 4 u) ;
61
63
assert_eq ! ( align_of:: <* const uint>( ) , 4 u) ;
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ mod i686_unknown_dragonfly;
72
72
mod i686_unknown_linux_gnu;
73
73
mod mips_unknown_linux_gnu;
74
74
mod mipsel_unknown_linux_gnu;
75
+ mod powerpc_unknown_linux_gnu;
75
76
mod x86_64_apple_darwin;
76
77
mod x86_64_apple_ios;
77
78
mod x86_64_pc_windows_gnu;
@@ -95,7 +96,7 @@ pub struct Target {
95
96
/// OS name to use for conditional compilation.
96
97
pub target_os : String ,
97
98
/// Architecture to use for ABI considerations. Valid options: "x86", "x86_64", "arm",
98
- /// "aarch64", and "mips ". "mips" includes "mipsel".
99
+ /// "aarch64", "mips", and "powerpc ". "mips" includes "mipsel".
99
100
pub arch : String ,
100
101
/// Optional settings with defaults.
101
102
pub options : TargetOptions ,
@@ -339,6 +340,7 @@ impl Target {
339
340
i686_unknown_linux_gnu,
340
341
mips_unknown_linux_gnu,
341
342
mipsel_unknown_linux_gnu,
343
+ powerpc_unknown_linux_gnu,
342
344
arm_linux_androideabi,
343
345
arm_unknown_linux_gnueabi,
344
346
arm_unknown_linux_gnueabihf,
You can’t perform that action at this time.
0 commit comments