Skip to content

Commit a28a7d4

Browse files
committed
[clang][Interp][NFC] Remove leftover comments
1 parent ca66f74 commit a28a7d4

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

clang/lib/AST/Interp/InterpBuiltin.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,6 @@ static bool interp__builtin_bitreverse(InterpState &S, CodePtr OpPC,
493493
const CallExpr *Call) {
494494
PrimType ArgT = *S.getContext().classify(Call->getArg(0)->getType());
495495
APSInt Val = peekToAPSInt(S.Stk, ArgT);
496-
// pushAPSInt(S, APSInt(Val.reverseBits(), /*IsUnsigned=*/true));
497496
pushInteger(S, Val.reverseBits(), Call->getType());
498497
return true;
499498
}
@@ -552,7 +551,6 @@ static bool interp__builtin_rotate(InterpState &S, CodePtr OpPC,
552551
Result = APSInt(Value.rotl(Amount.urem(Value.getBitWidth())),
553552
/*IsUnsigned=*/true);
554553

555-
// pushAPSInt(S, Result);
556554
pushInteger(S, Result, Call->getType());
557555
return true;
558556
}
@@ -785,7 +783,6 @@ static bool interp__builtin_carryop(InterpState &S, CodePtr OpPC,
785783
CarryOutPtr.initialize();
786784

787785
assert(Call->getType() == Call->getArg(0)->getType());
788-
// pushAPSInt(S, Result);
789786
pushInteger(S, Result, Call->getType());
790787
return true;
791788
}

0 commit comments

Comments
 (0)