1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Now that VS2013 is gone, make a memoryssa structure an anonymous union again

llvm-svn: 284910
This commit is contained in:
Daniel Berlin 2016-10-22 04:15:41 +00:00
parent d7100e5ad6
commit e44e207c6b

View File

@ -144,10 +144,10 @@ public:
}
private:
// FIXME: MSVC 2013 does not properly implement C++11 union rules, once we
// require newer versions, this should be made an anonymous union again.
ImmutableCallSite CS;
MemoryLocation Loc;
union {
ImmutableCallSite CS;
MemoryLocation Loc;
};
};
}