summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaStmtAsm.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-08-28 22:08:58 +0000
committerChad Rosier <mcrosier@apple.com>2012-08-28 22:08:58 +0000
commit6f0a9a2e2fb813ef5b6300909253bedd7c7dd33d (patch)
tree5fdffa6c9d6f6bfe509f48f7e0ab2aa1e2c05c3f /clang/lib/Sema/SemaStmtAsm.cpp
parent649dfc317d04648597c72d1d9678a1ac0769ae90 (diff)
downloadbcm5719-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.cpp4
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;
OpenPOWER on IntegriCloud