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 97d4c7d commit 917b455Copy full SHA for 917b455
clang/lib/AST/ByteCode/Compiler.cpp
@@ -4199,8 +4199,7 @@ template <class Emitter> bool Compiler<Emitter>::visit(const Expr *E) {
4199
return this->discard(E);
4200
4201
// Create local variable to hold the return value.
4202
- if (!E->isGLValue() && !E->getType()->isAnyComplexType() &&
4203
- !canClassify(E->getType())) {
+ if (!E->isGLValue() && !canClassify(E->getType())) {
4204
UnsignedOrNone LocalIndex = allocateLocal(E);
4205
if (!LocalIndex)
4206
return false;
0 commit comments