diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-20 04:59:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-20 04:59:57 +0000 |
commit | cb8095f766f1fe3d664d90ec450093468933f23c (patch) | |
tree | 1e591f42c8121ae71980a822afc4ec4cba04b724 /lib/CodeGen/CGExprScalar.cpp | |
parent | 410b12e55395216a02a848a791a38b0f153eba87 (diff) |
as eli points out, we're not doing memory stuff here. While ConvertType
and ConvertTypeForMem are the same for pointers, it is best to just
use ConvertType. Thanks Eli!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135567 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprScalar.cpp')
-rw-r--r-- | lib/CodeGen/CGExprScalar.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index f64e98ef68..3eebbaa9a8 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -1077,8 +1077,7 @@ Value *ScalarExprEmitter::VisitCastExpr(CastExpr *CE) { // Make sure the array decay ends up being the right type. This matters if // the array type was of an incomplete type. - return CGF.Builder.CreateBitCast(V, - CGF.getTypes().ConvertTypeForMem(CE->getType())); + return CGF.Builder.CreateBitCast(V, ConvertType(CE->getType())); } case CK_FunctionToPointerDecay: return EmitLValue(E).getAddress(); |