summaryrefslogtreecommitdiff
path: root/lib/VMCore
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-09-13 18:25:05 +0000
committerEric Christopher <echristo@apple.com>2010-09-13 18:25:05 +0000
commit3ec73169a335cbdf1f836957e251f2f23a3b0b4c (patch)
treee1300bebfdc893de4fcf726057ebe5df8392d0f1 /lib/VMCore
parenteac6e1d0c748afc3d1496be0753ffbe5f5a4279b (diff)
downloadllvm-3ec73169a335cbdf1f836957e251f2f23a3b0b4c.tar.gz
llvm-3ec73169a335cbdf1f836957e251f2f23a3b0b4c.tar.bz2
llvm-3ec73169a335cbdf1f836957e251f2f23a3b0b4c.tar.xz
Silence some constructor ordering warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113767 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/InlineAsm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/VMCore/InlineAsm.cpp b/lib/VMCore/InlineAsm.cpp
index 814b31aeb3..7bbf0ba1ca 100644
--- a/lib/VMCore/InlineAsm.cpp
+++ b/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) {
}