Skip to content

Commit

Permalink
Delete unused sym_clear_flag function. (python#115744)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminp authored Feb 21, 2024
1 parent 259730b commit 1235e84
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Python/optimizer_analysis.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,6 @@ sym_set_flag(_Py_UOpsSymType *sym, int flag)
sym->flags |= flag;
}

static inline void
sym_clear_flag(_Py_UOpsSymType *sym, int flag)
{
sym->flags &= (~flag);
}

static inline bool
sym_has_flag(_Py_UOpsSymType *sym, int flag)
{
Expand Down

0 comments on commit 1235e84

Please sign in to comment.