aboutsummaryrefslogtreecommitdiffstats
path: root/ref_vext.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_vext.c
parent6f4d36f3deebf87b2710b5b7b5b30e8b2b60c285 (diff)
downloadplatform_external_arm-neon-tests-bd9ecf4db9bba1231667eac1468d9155d46a5e4f.tar.gz
platform_external_arm-neon-tests-bd9ecf4db9bba1231667eac1468d9155d46a5e4f.tar.bz2
platform_external_arm-neon-tests-bd9ecf4db9bba1231667eac1468d9155d46a5e4f.zip
Merge from SVN #531
[CL] add 'f' suffix to 'float' constants
Diffstat (limited to 'ref_vext.c')
-rw-r--r--ref_vext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ref_vext.c b/ref_vext.c
index a14a5ac..aa00d81 100644
--- a/ref_vext.c
+++ b/ref_vext.c
@@ -63,7 +63,7 @@ void exec_vext (void)
TEST_VDUP(vector2, , uint, u, 16, 4, 0x66);
TEST_VDUP(vector2, , uint, u, 32, 2, 0x77);
TEST_VDUP(vector2, , uint, u, 64, 1, 0x88);
- TEST_VDUP(vector2, , float, f, 32, 2, 33.6);
+ TEST_VDUP(vector2, , float, f, 32, 2, 33.6f);
TEST_VDUP(vector2, q, int, s, 8, 16, 0x11);
TEST_VDUP(vector2, q, int, s, 16, 8, 0x22);
@@ -73,7 +73,7 @@ void exec_vext (void)
TEST_VDUP(vector2, q, uint, u, 16, 8, 0x66);
TEST_VDUP(vector2, q, uint, u, 32, 4, 0x77);
TEST_VDUP(vector2, q, uint, u, 64, 2, 0x88);
- TEST_VDUP(vector2, q, float, f, 32, 4, 33.2);
+ TEST_VDUP(vector2, q, float, f, 32, 4, 33.2f);
/* Choose arbitrary extract offsets */
TEST_VEXT(, int, s, 8, 8, 7);