Use a range loop.

llvm-svn: 207996
This commit is contained in:
Rafael Espindola 2014-05-05 20:06:41 +00:00
parent 871de4ff4d
commit 9c8c96f08a
1 changed files with 1 additions and 3 deletions

View File

@ -429,9 +429,7 @@ void LTOCodeGenerator::applyScopeRestrictions() {
if (!AsmUsed.empty()) {
llvm::Type *i8PTy = llvm::Type::getInt8PtrTy(Context);
std::vector<Constant*> asmUsed2;
for (SmallPtrSet<GlobalValue*, 16>::const_iterator i = AsmUsed.begin(),
e = AsmUsed.end(); i !=e; ++i) {
GlobalValue *GV = *i;
for (auto *GV : AsmUsed) {
Constant *c = ConstantExpr::getBitCast(GV, i8PTy);
asmUsed2.push_back(c);
}