Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-120619: Strength reduce function guards, support 2-operand instruction forms #124846

Merged
merged 12 commits into from
Nov 9, 2024
3 changes: 2 additions & 1 deletion Include/internal/pycore_optimizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ typedef struct {
uint16_t error_target;
};
};
uint64_t operand; // A cache entry
uint64_t operand0; // A cache entry
uint64_t operand1;
} _PyUOpInstruction;

typedef struct {
Expand Down
Loading
Loading