Skip to content

Commit f135697

Browse files
committedOct 20, 2016
trans: pad const structs to aligned size
1 parent cfc9b51 commit f135697

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed
 

‎src/librustc_trans/adt.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -777,8 +777,8 @@ fn build_const_struct<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>,
777777
offset += machine::llsize_of_alloc(ccx, val_ty(val));
778778
}
779779

780-
if offset < st.min_size.bytes() {
781-
cfields.push(padding(ccx, st.min_size.bytes() - offset));
780+
if offset < st.stride().bytes() {
781+
cfields.push(padding(ccx, st.stride().bytes() - offset));
782782
}
783783

784784
cfields

‎src/test/run-pass/issue-37222.rs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#[derive(Debug, PartialEq)]
12+
enum Bar {
13+
A(i64),
14+
B(i32),
15+
C,
16+
}
17+
18+
#[derive(Debug, PartialEq)]
19+
struct Foo(Bar, u8);
20+
21+
static FOO: [Foo; 2] = [Foo(Bar::C, 0), Foo(Bar::C, 0xFF)];
22+
23+
fn main() {
24+
assert_eq!(&FOO[1], &Foo(Bar::C, 0xFF));
25+
}

0 commit comments

Comments
 (0)
Please sign in to comment.