From f1356975a426b05bd57fa551218bf63e14c57052 Mon Sep 17 00:00:00 2001 From: Tim Neumann Date: Wed, 19 Oct 2016 19:00:11 +0200 Subject: [PATCH] trans: pad const structs to aligned size --- src/librustc_trans/adt.rs | 4 ++-- src/test/run-pass/issue-37222.rs | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 src/test/run-pass/issue-37222.rs diff --git a/src/librustc_trans/adt.rs b/src/librustc_trans/adt.rs index f5cbe138cc5eb..c6f3ef0a5beed 100644 --- a/src/librustc_trans/adt.rs +++ b/src/librustc_trans/adt.rs @@ -777,8 +777,8 @@ fn build_const_struct<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>, offset += machine::llsize_of_alloc(ccx, val_ty(val)); } - if offset < st.min_size.bytes() { - cfields.push(padding(ccx, st.min_size.bytes() - offset)); + if offset < st.stride().bytes() { + cfields.push(padding(ccx, st.stride().bytes() - offset)); } cfields diff --git a/src/test/run-pass/issue-37222.rs b/src/test/run-pass/issue-37222.rs new file mode 100644 index 0000000000000..381a5799cc555 --- /dev/null +++ b/src/test/run-pass/issue-37222.rs @@ -0,0 +1,25 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#[derive(Debug, PartialEq)] +enum Bar { + A(i64), + B(i32), + C, +} + +#[derive(Debug, PartialEq)] +struct Foo(Bar, u8); + +static FOO: [Foo; 2] = [Foo(Bar::C, 0), Foo(Bar::C, 0xFF)]; + +fn main() { + assert_eq!(&FOO[1], &Foo(Bar::C, 0xFF)); +}