File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
- ' 3.10'
14
14
- ' 3.9'
15
15
- ' 3.8'
16
- - ' justin' # XXX
17
16
pull_request :
18
17
branches :
19
18
- ' main'
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: JIT
2
2
on : push
3
3
jobs :
4
4
jit :
5
- # if: false # XXX
5
+ # Comment this line to run JIT CI:
6
+ # if: false # XXX: Uncomment before merging.
6
7
name : ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }})
7
8
runs-on : ${{ matrix.runner }}
8
9
strategy :
Original file line number Diff line number Diff line change 664
664
<Filter >Include\cpython</Filter >
665
665
</ClInclude >
666
666
<ClInclude Include =" ..\Include\internal\pycore_jit.h" >
667
- <Filter >Include\cpython </Filter >
667
+ <Filter >Include\internal </Filter >
668
668
</ClInclude >
669
669
<ClInclude Include =" ..\Include\internal\pycore_list.h" >
670
670
<Filter >Include\internal</Filter >
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ class StencilGroup:
121
121
)
122
122
123
123
def global_offset_table_lookup (self , symbol : str | None ) -> int :
124
- """when disabling position-independent-code , macOS insists on using the GOT ."""
124
+ """Even when disabling PIC , macOS insists on using the global offset table ."""
125
125
if symbol is None :
126
126
return len (self .data .body )
127
127
default = 8 * len (self .global_offset_table )
You can’t perform that action at this time.
0 commit comments