We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6407411 commit bcb2278Copy full SHA for bcb2278
tests/test_core.py
@@ -5789,6 +5789,7 @@ def test_sse1_full(self):
5789
# Tests the full SSE2 API.
5790
@SIMD
5791
def test_sse2_full(self):
5792
+ if self.run_name == 'asm1': return self.skip("some i64 thing we can't legalize yet. possible hint: optimize with -O0 or -O2+, and not -O1");
5793
import platform
5794
is_64bits = platform.architecture()[0] == '64bit'
5795
if not is_64bits: return self.skip('This test requires 64-bit system, since it tests SSE2 intrinsics only available in 64-bit mode!')
0 commit comments