Skip to content

Commit ca87671

Browse files
committed
[clang][Interp][NFC] Make local pointer const
1 parent dff3e28 commit ca87671

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/AST/Interp/InterpBuiltin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ static bool interp__builtin_complex(InterpState &S, CodePtr OpPC,
917917

918918
bool InterpretBuiltin(InterpState &S, CodePtr OpPC, const Function *F,
919919
const CallExpr *Call) {
920-
InterpFrame *Frame = S.Current;
920+
const InterpFrame *Frame = S.Current;
921921
APValue Dummy;
922922

923923
std::optional<PrimType> ReturnT = S.getContext().classify(Call);

0 commit comments

Comments
 (0)