aboutsummaryrefslogtreecommitdiffstats
path: root/ref_vqsub.c
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2014-06-03 22:47:52 +0200
committerChristophe Lyon <christophe.lyon@linaro.org>2014-06-03 22:47:52 +0200
commit4a6e5cc95176769664bc9e56d4e7c92b7a2fc816 (patch)
tree614baf4a3939bd6a255da33aebf5cd12a43e8021 /ref_vqsub.c
parentfad316adcad1edd1cbb1e01769768abcffcb1070 (diff)
downloadplatform_external_arm-neon-tests-4a6e5cc95176769664bc9e56d4e7c92b7a2fc816.tar.gz
platform_external_arm-neon-tests-4a6e5cc95176769664bc9e56d4e7c92b7a2fc816.tar.bz2
platform_external_arm-neon-tests-4a6e5cc95176769664bc9e56d4e7c92b7a2fc816.zip
Renamed Neon overflow to Neon cumulative saturation, since it's the real name.
Diffstat (limited to 'ref_vqsub.c')
-rw-r--r--ref_vqsub.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/ref_vqsub.c b/ref_vqsub.c
index 3cd28ae..f765b27 100644
--- a/ref_vqsub.c
+++ b/ref_vqsub.c
@@ -49,7 +49,9 @@ void vqsub_64(void)
TEST_VDUP(vector2, q, int, s, 64, 2, 0x0);
TEST_VDUP(vector2, q, uint, u, 64, 2, 0x0);
- fprintf(ref_file, "\n%s 64 bits saturation overflow output:\n", TEST_MSG);
+ fprintf(ref_file,
+ "\n%s 64 bits saturation cumulative saturation output:\n",
+ TEST_MSG);
TEST_BINARY_SAT_OP(INSN_NAME, , int, s, 64, 1);
TEST_BINARY_SAT_OP(INSN_NAME, , uint, u, 64, 1);
TEST_BINARY_SAT_OP(INSN_NAME, q, int, s, 64, 2);
@@ -67,7 +69,9 @@ void vqsub_64(void)
TEST_VDUP(vector2, q, int, s, 64, 2, 0x44);
TEST_VDUP(vector2, q, uint, u, 64, 2, 0x88);
- fprintf(ref_file, "\n%s 64 bits saturation overflow output:\n", TEST_MSG);
+ fprintf(ref_file,
+ "\n%s 64 bits saturation cumulative saturation output:\n",
+ TEST_MSG);
TEST_BINARY_SAT_OP(INSN_NAME, , int, s, 64, 1);
TEST_BINARY_SAT_OP(INSN_NAME, , uint, u, 64, 1);
TEST_BINARY_SAT_OP(INSN_NAME, q, int, s, 64, 2);
@@ -89,7 +93,9 @@ void vqsub_64(void)
TEST_VDUP(vector2, q, uint, u, 64, 2, 0xffffffffffffffffULL);
- fprintf(ref_file, "\n%s 64 bits saturation overflow output:\n", TEST_MSG);
+ fprintf(ref_file,
+ "\n%s 64 bits saturation cumulative saturation output:\n",
+ TEST_MSG);
TEST_BINARY_SAT_OP(INSN_NAME, , int, s, 64, 1);
TEST_BINARY_SAT_OP(INSN_NAME, , uint, u, 64, 1);
TEST_BINARY_SAT_OP(INSN_NAME, q, int, s, 64, 2);
@@ -138,7 +144,8 @@ void vqsub_64(void)
TEST_VDUP(vector2, q, uint, u, 16, 8, 0x20);
TEST_VDUP(vector2, q, uint, u, 32, 4, 0x20);
- fprintf(ref_file, "\n%s less than 64 bits saturation overflow output:\n",
+ fprintf(ref_file,
+ "\n%s less than 64 bits saturation cumulative saturation output:\n",
TEST_MSG);
TEST_BINARY_SAT_OP(INSN_NAME, , uint, u, 8, 8);
TEST_BINARY_SAT_OP(INSN_NAME, , uint, u, 16, 4);