Revert r162424 now that the scoping issue has been fixed in r162444.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162797 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/SemaStmtAsm.cpp b/lib/Sema/SemaStmtAsm.cpp
index a789d59..14ea70b 100644
--- a/lib/Sema/SemaStmtAsm.cpp
+++ b/lib/Sema/SemaStmtAsm.cpp
@@ -538,8 +538,8 @@
// Canonicalize the opcode to lower case.
SmallString<128> Opcode;
- for (unsigned j = 0, e = IDVal.size(); j != e; ++j)
- Opcode.push_back(tolower(IDVal[j]));
+ for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
+ Opcode.push_back(tolower(IDVal[i]));
// Parse the operands.
llvm::SMLoc IDLoc;