15 lines
880 B
Plaintext
15 lines
880 B
Plaintext
test run
|
|
set enable_simd
|
|
target aarch64
|
|
target x86_64
|
|
|
|
function %bitselect_i32x4(i32x4, i32x4, i32x4) -> i32x4 {
|
|
block0(v0: i32x4, v1: i32x4, v2: i32x4):
|
|
v3 = bitselect v0, v1, v2
|
|
return v3
|
|
}
|
|
; run: %bitselect_i32x4(0x00000000000000000000000000000000, 0x11111111111111111111111111111111, 0x00000000000000000000000000000000) == 0x00000000000000000000000000000000
|
|
; run: %bitselect_i32x4(0x11111111111111111111111111111111, 0x11111111111111111111111111111111, 0x00000000000000000000000000000000) == 0x11111111111111111111111111111111
|
|
; run: %bitselect_i32x4(0x01010011000011110000000011111111, 0x11111111111111111111111111111111, 0x00000000000000000000000000000000) == 0x01010011000011110000000011111111
|
|
; run: %bitselect_i32x4(0x00000000000000001111111111111111, 0x00000000000000000000000000000000, 0x11111111111111111111111111111111) == 0x11111111111111110000000000000000
|