Skip to content

Commit bb5e18e

Browse files
committed
Add link back
1 parent c83acf9 commit bb5e18e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Python/optimizer_symbols.c

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,12 @@
1313
#include <stdint.h>
1414
#include <stddef.h>
1515

16-
/* Symbols
17-
=======
16+
/*
17+
18+
Symbols
19+
=======
20+
21+
https://github.com/faster-cpython/ideas/blob/main/3.13/redundancy_eliminator.md
1822
1923
Logically, all symbols begin as UNKNOWN, and can transition downwards along the
2024
edges of the lattice, but *never* upwards (see the diagram below). The UNKNOWN
@@ -48,7 +52,7 @@ result of a truth test, which would allow us to narrow the symbol to KNOWN_VALUE
4852
the same symbol, that would be a contradiction, and the symbol would be set to
4953
BOTTOM (indicating that the code is unreachable).
5054
51-
*/
55+
*/
5256

5357
#ifdef Py_DEBUG
5458
static inline int get_lltrace(void) {

0 commit comments

Comments
 (0)