aboutsummaryrefslogtreecommitdiffstats
path: root/ref_vqabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'ref_vqabs.c')
-rw-r--r--ref_vqabs.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ref_vqabs.c b/ref_vqabs.c
index a7a6466..e0ef53f 100644
--- a/ref_vqabs.c
+++ b/ref_vqabs.c
@@ -53,12 +53,12 @@ void vqabs_extra()
/* Initialize input "vector" with max negative values to check
saturation */
- TEST_VDUP(vector, , int, s, 8, 8, 0x80);
- TEST_VDUP(vector, , int, s, 16, 4, 0x8000);
- TEST_VDUP(vector, , int, s, 32, 2, 0x80000000);
- TEST_VDUP(vector, q, int, s, 8, 16, 0x80);
- TEST_VDUP(vector, q, int, s, 16, 8, 0x8000);
- TEST_VDUP(vector, q, int, s, 32, 4, 0x80000000);
+ VDUP(vector, , int, s, 8, 8, 0x80);
+ VDUP(vector, , int, s, 16, 4, 0x8000);
+ VDUP(vector, , int, s, 32, 2, 0x80000000);
+ VDUP(vector, q, int, s, 8, 16, 0x80);
+ VDUP(vector, q, int, s, 16, 8, 0x8000);
+ VDUP(vector, q, int, s, 32, 4, 0x80000000);
/* Apply a unary operator named INSN_NAME */
fprintf(ref_file, "\n%s cumulative saturation output:\n", TEST_MSG);