<div dir="auto">The "right" way to get this effect is to use __attribute__((packed)) on the field.</div><div class="gmail_extra"><br><div class="gmail_quote">On 9 Feb 2017 9:33 am, "Martin J. O'Riordan via cfe-dev" <<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>> wrote:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Wow!  Thanks for the response, that worked perfectly.<br>
<br>
I never would have expected that the indirect 'typedef' approach would behave any differently to the more direct annotation!  I feel that this is probably an unintended GCC behaviour/bug, though CLang is 100% right to maintain compatibility with GCC.<br>
<br>
But it solved my problem, thanks very much,<br>
<br>
        MartinO<br>
<div class="elided-text"><br>
-----Original Message-----<br>
From: Tim Northover [mailto:<a href="mailto:t.p.northover@gmail.com">t.p.northover@gmail.<wbr>com</a>]<br>
Sent: 09 February 2017 15:08<br>
To: Martin J. O'Riordan <<a href="mailto:Martin.ORiordan@movidius.com">Martin.ORiordan@movidius.com</a>><br>
Cc: cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>><br>
Subject: Re: [cfe-dev] 'struct' member alignment query<br>
<br>
On 9 February 2017 at 02:56, Martin J. O'Riordan via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>> wrote:<br>
> Is this expected behaviour in 'clang', and if so, is there another way<br>
> I can coerce the 'struct' member 'alignCheck2' onto another less<br>
> constrained alignment boundary?<br>
<br>
It's expected, but I think only because of GCC compatibility because it's really not obvious behaviour. The workaround, which still mystifies me, is to go via a typedef:<br>
<br>
typedef AlignCheck_t __attribute__((aligned(1))) UnAlignCheck_t;<br>
<br>
then you can put that in the struct and it'll be laid out without any padding.<br>
<br>
Tim.<br>
<br>
______________________________<wbr>_________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-dev</a><br>
</div></blockquote></div><br></div>