We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32c0048 commit dfd5a64Copy full SHA for dfd5a64
clang/lib/AST/Interp/ByteCodeExprGen.cpp
@@ -342,7 +342,7 @@ bool ByteCodeExprGen<Emitter>::VisitCastExpr(const CastExpr *CE) {
342
if (!this->emitSetLocal(PT_Ptr, *SubExprOffset, CE))
343
return false;
344
345
- PrimType SourceElemT = *classifyComplexElementType(SubExpr->getType());
+ PrimType SourceElemT = classifyComplexElementType(SubExpr->getType());
346
QualType DestElemType =
347
CE->getType()->getAs<ComplexType>()->getElementType();
348
PrimType DestElemT = classifyPrim(DestElemType);
0 commit comments