diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-08-28 22:08:58 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-08-28 22:08:58 +0000 |
commit | 6f0a9a2e2fb813ef5b6300909253bedd7c7dd33d (patch) | |
tree | 5fdffa6c9d6f6bfe509f48f7e0ab2aa1e2c05c3f /clang/lib/Sema/SemaStmtAsm.cpp | |
parent | 649dfc317d04648597c72d1d9678a1ac0769ae90 (diff) | |
download | bcm5719-llvm-6f0a9a2e2fb813ef5b6300909253bedd7c7dd33d.tar.gz bcm5719-llvm-6f0a9a2e2fb813ef5b6300909253bedd7c7dd33d.zip |
Revert r162424 now that the scoping issue has been fixed in r162444.
llvm-svn: 162797
Diffstat (limited to 'clang/lib/Sema/SemaStmtAsm.cpp')
-rw-r--r-- | clang/lib/Sema/SemaStmtAsm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaStmtAsm.cpp b/clang/lib/Sema/SemaStmtAsm.cpp index a789d5945e5..14ea70b2924 100644 --- a/clang/lib/Sema/SemaStmtAsm.cpp +++ b/clang/lib/Sema/SemaStmtAsm.cpp @@ -538,8 +538,8 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, // 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; |