Skip to content

Commit

Permalink
[MSP430] Update LLVM submodule to fix size and alignment of structs.
Browse files Browse the repository at this point in the history
Without this patch the struct
```Rust
#[repr(C)]
struct A {
    a: u8,
}
```
has size 2 and alignment 2.

But MSP430 EABI dictates that such struct should have size 1
and alignment 1.
  • Loading branch information
vadzimdambrouski committed Jun 26, 2017
1 parent fc9ccfd commit e9f98ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rustllvm/llvm-rebuild-trigger
@@ -1,4 +1,4 @@
# If this file is modified, then llvm will be (optionally) cleaned and then rebuilt.
# The actual contents of this file do not matter, but to trigger a change on the
# build bots then the contents should be changed so git updates the mtime.
2017-06-19
2017-06-26

0 comments on commit e9f98ae

Please sign in to comment.