Type-cast RHS of assignment to prevent warning compiling rewritten foreach code.

llvm-svn: 45777
This commit is contained in:
Fariborz Jahanian 2008-01-09 18:15:42 +00:00
parent 22f2347791
commit 6fa7516bc9
2 changed files with 40 additions and 5 deletions

View File

@ -808,7 +808,7 @@ void RewriteTest::SynthCountByEnumWithState(std::string &buf) {
/// do {
/// if (startMutations != *enumState.mutationsPtr)
/// objc_enumerationMutation(l_collection);
/// elem = enumState.itemsPtr[counter++];
/// elem = (type)enumState.itemsPtr[counter++];
/// stmts;
/// } while (counter < limit);
/// } while (limit = [l_collection countByEnumeratingWithState:&enumState
@ -826,19 +826,23 @@ Stmt *RewriteTest::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S) {
const char *startBuf = SM->getCharacterData(startLoc);
const char *startCollectionBuf = SM->getCharacterData(collectionLoc);
const char *elementName;
std::string elementTypeAsString;
std::string buf;
buf = "\n{\n\t";
if (DeclStmt *DS = dyn_cast<DeclStmt>(S->getElement())) {
// type elem;
QualType ElementType = cast<ValueDecl>(DS->getDecl())->getType();
buf += ElementType.getAsString();
elementTypeAsString = ElementType.getAsString();
buf += elementTypeAsString;
buf += " ";
elementName = DS->getDecl()->getName();
buf += elementName;
buf += ";\n\t";
}
else if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S->getElement()))
else if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S->getElement())) {
elementName = DR->getDecl()->getName();
elementTypeAsString = DR->getDecl()->getType().getAsString();
}
else
assert(false && "RewriteObjCForCollectionStmt - bad element kind");
@ -879,7 +883,7 @@ Stmt *RewriteTest::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S) {
/// do {
/// if (startMutations != *enumState.mutationsPtr)
/// objc_enumerationMutation(l_collection);
/// elem = enumState.itemsPtr[counter++];
/// elem = (type)enumState.itemsPtr[counter++];
buf += "if (limit) {\n\t";
buf += "unsigned long startMutations = *enumState.mutationsPtr;\n\t";
buf += "do {\n\t\t";
@ -888,7 +892,9 @@ Stmt *RewriteTest::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S) {
buf += "if (startMutations != *enumState.mutationsPtr)\n\t\t\t\t";
buf += "objc_enumerationMutation(l_collection);\n\t\t\t";
buf += elementName;
buf += " = enumState.itemsPtr[counter++];";
buf += " = (";
buf += elementTypeAsString;
buf += ")enumState.itemsPtr[counter++];";
// Replace ')' in for '(' type elem in collection ')' with all of these.
Rewrite.ReplaceText(lparenLoc, 1, buf.c_str(), buf.size());

View File

@ -0,0 +1,29 @@
// RUN: clang -rewrite-test %s
@protocol P @end
@interface MyList
@end
@implementation MyList
- (unsigned int)countByEnumeratingWithState: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
{
return 0;
}
@end
@interface MyList (BasicTest)
- (void)compilerTestAgainst;
@end
int LOOP();
@implementation MyList (BasicTest)
- (void)compilerTestAgainst {
MyList * el;
for (el in self)
{ LOOP(); }
for (MyList * el1 in self)
LOOP();
}
@end