From a0c390da144591eaecf75e965910835205dba23f Mon Sep 17 00:00:00 2001 From: "barry.wardell" Date: Fri, 2 Mar 2012 13:25:36 +0000 Subject: Add missing functionality for single precision unvectorised architecture. git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/Vectors/trunk@53 105869f7-3296-0410-a4ea-f4349344b45a --- src/vectors-4-default.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vectors-4-default.h b/src/vectors-4-default.h index 874f471..361a7dd 100644 --- a/src/vectors-4-default.h +++ b/src/vectors-4-default.h @@ -46,10 +46,13 @@ // Aligned store #define vec4_store(p,x) ((p)=(x)) +#define vec4_storeu(p,x) ((p)=(x)) + // Unaligned store #define vec4_store_nta(p,x) ((p)=(x)) -#define vec4_store_nta_partial(p,x,i,imin,imax) (vec4_store_nta(p,x)) +#define vec4_store_partial_prepare(i,imin,imax) (0) +#define vec4_store_nta_partial(p,x) (vec4_store_nta(p,x)) // Store the n lower elements of a vector to memory #define vec4_store_nta_partial_lo(p,x,n) (assert(0)) // Store the n higher elements of a vector into memory. This stores -- cgit v1.2.3