Skip to content

Commit f32662a

Browse files
committed
[clang][Interp][NFC] Remove outdated FIXME comment
This rework has already happened.
1 parent 54b54d6 commit f32662a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/AST/Interp/ByteCodeExprGen.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,8 +563,8 @@ bool ByteCodeExprGen<Emitter>::VisitLogicalBinOp(const BinaryOperator *E) {
563563

564564
template <class Emitter>
565565
bool ByteCodeExprGen<Emitter>::VisitComplexBinOp(const BinaryOperator *E) {
566-
// FIXME: We expect a pointer on the stack here.
567-
// we should not do that, but that's part of a bigger rework.
566+
assert(Initializing);
567+
568568
const Expr *LHS = E->getLHS();
569569
const Expr *RHS = E->getRHS();
570570
PrimType LHSElemT = *this->classifyComplexElementType(LHS->getType());

0 commit comments

Comments
 (0)