Skip to content

Commit bcb2278

Browse files
committed
disable asm1.test_sse2_full, which after llvm update now hits our error on avoiding -O1
1 parent 6407411 commit bcb2278

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/test_core.py

+1
Original file line numberDiff line numberDiff line change
@@ -5789,6 +5789,7 @@ def test_sse1_full(self):
57895789
# Tests the full SSE2 API.
57905790
@SIMD
57915791
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");
57925793
import platform
57935794
is_64bits = platform.architecture()[0] == '64bit'
57945795
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

Comments
 (0)