aboutsummaryrefslogtreecommitdiff
path: root/ref_vabd.c
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@st.com>2011-07-19 16:30:50 +0200
committerChristophe Lyon <christophe.lyon@st.com>2011-07-19 16:30:50 +0200
commitbd9ecf4db9bba1231667eac1468d9155d46a5e4f (patch)
tree118945e27d7a4bb1468f0a48e7a87db78d8a4d44 /ref_vabd.c
parent6f4d36f3deebf87b2710b5b7b5b30e8b2b60c285 (diff)
downloadarm-neon-tests-bd9ecf4db9bba1231667eac1468d9155d46a5e4f.tar.gz
Merge from SVN #531
[CL] add 'f' suffix to 'float' constants
Diffstat (limited to 'ref_vabd.c')
-rw-r--r--ref_vabd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ref_vabd.c b/ref_vabd.c
index 5b1420c..b639b27 100644
--- a/ref_vabd.c
+++ b/ref_vabd.c
@@ -88,14 +88,14 @@ void exec_vabd (void)
TEST_VDUP(vector2, , uint, u, 8, 8, 1);
TEST_VDUP(vector2, , uint, u, 16, 4, 13);
TEST_VDUP(vector2, , uint, u, 32, 2, 8);
- TEST_VDUP(vector2, , float, f, 32, 2, 8.3);
+ TEST_VDUP(vector2, , float, f, 32, 2, 8.3f);
TEST_VDUP(vector2, q, int, s, 8, 16, 10);
TEST_VDUP(vector2, q, int, s, 16, 8, -12);
TEST_VDUP(vector2, q, int, s, 32, 4, 32);
TEST_VDUP(vector2, q, uint, u, 8, 16, 10);
TEST_VDUP(vector2, q, uint, u, 16, 8, 12);
TEST_VDUP(vector2, q, uint, u, 32, 4, 32);
- TEST_VDUP(vector2, q, float, f, 32, 4, 32.12);
+ TEST_VDUP(vector2, q, float, f, 32, 4, 32.12f);
TEST_VABD(, int, s, 8, 8);
TEST_VABD(, int, s, 16, 4);