add support for implicit cast from array to pointer that is not the element

type.

llvm-svn: 44809
This commit is contained in:
Chris Lattner 2007-12-10 19:50:32 +00:00
parent d0113e4be3
commit 433fb26707
2 changed files with 9 additions and 2 deletions

View File

@ -404,7 +404,14 @@ static llvm::Constant *GenerateConstantExpr(const Expr *Expression,
llvm::Constant *Idx0 = llvm::ConstantInt::get(llvm::Type::Int32Ty, 0); llvm::Constant *Idx0 = llvm::ConstantInt::get(llvm::Type::Int32Ty, 0);
llvm::Constant *Ops[] = {Idx0, Idx0}; llvm::Constant *Ops[] = {Idx0, Idx0};
return llvm::ConstantExpr::getGetElementPtr(C, Ops, 2); C = llvm::ConstantExpr::getGetElementPtr(C, Ops, 2);
// The resultant pointer type can be implicitly casted to other pointer
// types as well, for example void*.
const llvm::Type *DestPTy = Types.ConvertType(type);
assert(isa<llvm::PointerType>(DestPTy) &&
"Only expect implicit cast to pointer");
return llvm::ConstantExpr::getBitCast(C, DestPTy);
} }
// If this is an implicit cast of a string literal to an array type, this // If this is an implicit cast of a string literal to an array type, this

View File

@ -10,7 +10,7 @@ void bar() { x[0] = 1; }
extern int y[]; extern int y[];
//void *g = y; void *g = y;
int latin_ptr2len (char *p); int latin_ptr2len (char *p);
int (*mb_ptr2len) (char *p) = latin_ptr2len; int (*mb_ptr2len) (char *p) = latin_ptr2len;