mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Value-initialize global to avoid global construction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155909 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c201e6eaf1
commit
030a3415b0
@ -117,8 +117,8 @@ TargetAlignElem::operator==(const TargetAlignElem &rhs) const {
|
|||||||
&& TypeBitWidth == rhs.TypeBitWidth);
|
&& TypeBitWidth == rhs.TypeBitWidth);
|
||||||
}
|
}
|
||||||
|
|
||||||
const TargetAlignElem TargetData::InvalidAlignmentElem =
|
const TargetAlignElem
|
||||||
TargetAlignElem::get((AlignTypeEnum) -1, 0, 0, 0);
|
TargetData::InvalidAlignmentElem = { (AlignTypeEnum)0xFF, 0, 0, 0 };
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// TargetData Class Implementation
|
// TargetData Class Implementation
|
||||||
|
Loading…
Reference in New Issue
Block a user