mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
DataLayout: value initialize globals to avoid static construction.
llvm-svn: 195150
This commit is contained in:
parent
5d21406399
commit
f5a7aea34b
@ -118,7 +118,7 @@ LayoutAlignElem::operator==(const LayoutAlignElem &rhs) const {
|
||||
}
|
||||
|
||||
const LayoutAlignElem
|
||||
DataLayout::InvalidAlignmentElem = LayoutAlignElem::get(INVALID_ALIGN, 0, 0, 0);
|
||||
DataLayout::InvalidAlignmentElem = { INVALID_ALIGN, 0, 0, 0 };
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// PointerAlignElem, PointerAlign support
|
||||
@ -145,7 +145,7 @@ PointerAlignElem::operator==(const PointerAlignElem &rhs) const {
|
||||
}
|
||||
|
||||
const PointerAlignElem
|
||||
DataLayout::InvalidPointerElem = PointerAlignElem::get(~0U, 0U, 0U, 0U);
|
||||
DataLayout::InvalidPointerElem = { 0U, 0U, 0U, ~0U };
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// DataLayout Class Implementation
|
||||
|
Loading…
x
Reference in New Issue
Block a user