diff options
author | Eric Christopher <echristo@apple.com> | 2010-09-13 18:25:05 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-09-13 18:25:05 +0000 |
commit | 5f878349eef6f403f7747f045b94896f92e28123 (patch) | |
tree | 03a86d38d58e781069123894e99a552612f4dc83 | |
parent | 1094c80281e3cdd9e9a9d7ee716da6386b33359b (diff) | |
download | bcm5719-llvm-5f878349eef6f403f7747f045b94896f92e28123.tar.gz bcm5719-llvm-5f878349eef6f403f7747f045b94896f92e28123.zip |
Silence some constructor ordering warnings.
llvm-svn: 113767
-rw-r--r-- | llvm/lib/VMCore/InlineAsm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/VMCore/InlineAsm.cpp b/llvm/lib/VMCore/InlineAsm.cpp index 814b31aeb38..7bbf0ba1ca4 100644 --- a/llvm/lib/VMCore/InlineAsm.cpp +++ b/llvm/lib/VMCore/InlineAsm.cpp @@ -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) { } |