Silence some constructor ordering warnings.

llvm-svn: 113767
This commit is contained in:
Eric Christopher 2010-09-13 18:25:05 +00:00
parent 1094c80281
commit 5f878349ee
1 changed files with 3 additions and 3 deletions

View File

@ -56,18 +56,18 @@ const FunctionType *InlineAsm::getFunctionType() const {
///Default constructor.
InlineAsm::ConstraintInfo::ConstraintInfo() :
isMultipleAlternative(false),
Type(isInput), isEarlyClobber(false),
MatchingInput(-1), isCommutative(false),
isIndirect(false), currentAlternativeIndex(0) {
isIndirect(false), isMultipleAlternative(false),
currentAlternativeIndex(0) {
}
/// Copy constructor.
InlineAsm::ConstraintInfo::ConstraintInfo(const ConstraintInfo &other) :
isMultipleAlternative(other.isMultipleAlternative),
Type(other.Type), isEarlyClobber(other.isEarlyClobber),
MatchingInput(other.MatchingInput), isCommutative(other.isCommutative),
isIndirect(other.isIndirect), Codes(other.Codes),
isMultipleAlternative(other.isMultipleAlternative),
multipleAlternatives(other.multipleAlternatives),
currentAlternativeIndex(other.currentAlternativeIndex) {
}