Reformat (and remove some tabs) to make debugging this code a

little easier to step through.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228746 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2015-02-10 21:15:06 +00:00
parent a4109ad7b9
commit beded8f64d

View File

@ -228,7 +228,10 @@ InlineAsm::ParseConstraints(StringRef Constraints) {
I = ConstraintEnd;
if (I != E) {
++I;
if (I == E) { Result.clear(); break; } // don't allow "xyz,"
if (I == E) {
Result.clear();
break;
} // don't allow "xyz,"
}
}