aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbarry.wardell <barry.wardell@105869f7-3296-0410-a4ea-f4349344b45a>2012-03-02 13:25:36 +0000
committerbarry.wardell <barry.wardell@105869f7-3296-0410-a4ea-f4349344b45a>2012-03-02 13:25:36 +0000
commita0c390da144591eaecf75e965910835205dba23f (patch)
tree9d16d441bf803c482f879bb0b09e1bfb4091d066
parentf781aa11ac959aa3a4cbb792e6583170143f7bff (diff)
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
-rw-r--r--src/vectors-4-default.h5
1 files changed, 4 insertions, 1 deletions
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