mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
Fix Alias Bug
Use memcpy to do type punning instead of a cast. A cast or similar operation through a union breaks strict aliasing rules. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172081 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c560bf638b
commit
5e1b31bf55
@ -783,10 +783,18 @@ namespace yaml {
|
||||
static void mapping(IO &io, KindAndFlags& kf) {
|
||||
io.mapRequired("kind", kf.kind);
|
||||
// type of flags field varies depending on kind field
|
||||
if ( kf.kind == kindA )
|
||||
io.mapRequired("flags", *((AFlags*)&kf.flags));
|
||||
else
|
||||
io.mapRequired("flags", *((BFlags*)&kf.flags));
|
||||
|
||||
// Use memcpy here to avoid breaking strict aliasing rules.
|
||||
if ( kf.kind == kindA ) {
|
||||
AFlags aflags;
|
||||
memcpy(&aflags, &kf.flags, sizeof(aflags));
|
||||
io.mapRequired("flags", aflags);
|
||||
}
|
||||
else {
|
||||
BFlags bflags;
|
||||
memcpy(&bflags, &kf.flags, sizeof(bflags));
|
||||
io.mapRequired("flags", bflags);
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user