Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
PyPy
pypy
Commits
b86b4af25a6e
Commit
15bf489b
authored
Dec 13, 2022
by
Carl Friedrich Bolz-Tereick
Browse files
try to make the test work on 32bit
parent
aeeb524ee2dd
Pipeline
#59393
passed with stage
in 8 minutes and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rpython/jit/metainterp/optimizeopt/test/test_optimizeintbound.py
View file @
b86b4af2
...
...
@@ -1753,7 +1753,7 @@ class TestOptimizeIntBounds(BaseTestBasic):
def
test_lshift_before_bug
(
self
):
ops
=
"""
[i0]
i3 = int_lshift(
1152921504606846976
, i0)
i3 = int_lshift(
%s
, i0)
i1 = int_lt(i0, 16)
guard_true(i1) []
...
...
@@ -1762,7 +1762,7 @@ class TestOptimizeIntBounds(BaseTestBasic):
guard_value(i3, 0) []
jump(i0)
"""
"""
%
(
1
<<
(
LONG_BIT
-
3
))
self
.
optimize_loop
(
ops
,
ops
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment