gh-121404: split compile.c into compile.c and codegen.c (#123651)

This commit is contained in:
Irit Katriel 2024-09-09 18:21:51 +01:00 committed by GitHub
parent 65fcaa38ad
commit 1a9d8917a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 6721 additions and 6711 deletions

View file

@ -86,8 +86,6 @@ struct _PyCfgBuilder {
typedef struct _PyCfgBuilder cfg_builder;
static const jump_target_label NO_LABEL = {-1};
#define SAME_LABEL(L1, L2) ((L1).id == (L2).id)
#define IS_LABEL(L) (!SAME_LABEL((L), (NO_LABEL)))