Refactor SIMD filetests to use a common naming convention

All filetests now should look like `simd-[instruction category]-[test type]`, where `[test type]` is something like `run` or `binemit`.
This commit is contained in:
Andrew Brown
2020-03-05 15:54:29 -08:00
parent 442edf5c84
commit d19f727850
25 changed files with 385 additions and 444 deletions

View File

@@ -0,0 +1,12 @@
test binemit
set enable_simd
target x86_64
; TODO move to vconst-compile.clif or vconst-binemit.clif
function %test_vconst_optimizations() {
block0:
[-, %xmm4] v0 = vconst.b8x16 0x00 ; bin: 66 0f ef e4
[-, %xmm7] v1 = vconst.b8x16 0xffffffffffffffffffffffffffffffff ; bin: 66 0f 74 ff
return
}