mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
Silence some constructor ordering warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113767 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
eac6e1d0c7
commit
3ec73169a3
@ -56,18 +56,18 @@ const FunctionType *InlineAsm::getFunctionType() const {
|
|||||||
|
|
||||||
///Default constructor.
|
///Default constructor.
|
||||||
InlineAsm::ConstraintInfo::ConstraintInfo() :
|
InlineAsm::ConstraintInfo::ConstraintInfo() :
|
||||||
isMultipleAlternative(false),
|
|
||||||
Type(isInput), isEarlyClobber(false),
|
Type(isInput), isEarlyClobber(false),
|
||||||
MatchingInput(-1), isCommutative(false),
|
MatchingInput(-1), isCommutative(false),
|
||||||
isIndirect(false), currentAlternativeIndex(0) {
|
isIndirect(false), isMultipleAlternative(false),
|
||||||
|
currentAlternativeIndex(0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Copy constructor.
|
/// Copy constructor.
|
||||||
InlineAsm::ConstraintInfo::ConstraintInfo(const ConstraintInfo &other) :
|
InlineAsm::ConstraintInfo::ConstraintInfo(const ConstraintInfo &other) :
|
||||||
isMultipleAlternative(other.isMultipleAlternative),
|
|
||||||
Type(other.Type), isEarlyClobber(other.isEarlyClobber),
|
Type(other.Type), isEarlyClobber(other.isEarlyClobber),
|
||||||
MatchingInput(other.MatchingInput), isCommutative(other.isCommutative),
|
MatchingInput(other.MatchingInput), isCommutative(other.isCommutative),
|
||||||
isIndirect(other.isIndirect), Codes(other.Codes),
|
isIndirect(other.isIndirect), Codes(other.Codes),
|
||||||
|
isMultipleAlternative(other.isMultipleAlternative),
|
||||||
multipleAlternatives(other.multipleAlternatives),
|
multipleAlternatives(other.multipleAlternatives),
|
||||||
currentAlternativeIndex(other.currentAlternativeIndex) {
|
currentAlternativeIndex(other.currentAlternativeIndex) {
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user