blob: db5fdaf3e2c5211bd6db7878ec1a9177c1f5e7e7 (
plain)
1
2
3
4
5
6
7
8
9
|
is_amd64_codegen = [
unless(platform('x86_64-unknown-linux'),skip),
when(unregisterised, skip),
]
test('memcpy', is_amd64_codegen, compile_cmp_asm, [''])
test('memcpy-unroll', is_amd64_codegen, compile_cmp_asm, [''])
test('memcpy-unroll-conprop', is_amd64_codegen, compile_cmp_asm, [''])
test('memset-unroll', is_amd64_codegen, compile_cmp_asm, [''])
|