diff options
author | Geoffrey Mainland <gmainlan@microsoft.com> | 2011-11-04 17:44:39 +0000 |
---|---|---|
committer | Geoffrey Mainland <gmainlan@microsoft.com> | 2013-02-01 22:00:24 +0000 |
commit | 6480a35c15717025c169980b1cc763a7e6f36056 (patch) | |
tree | a4c5c6584018cd5c584414953435a6c076e02181 /includes/Cmm.h | |
parent | 4906460ad21ca2e90c0e2d9d50368fdc13c71bf2 (diff) | |
download | haskell-6480a35c15717025c169980b1cc763a7e6f36056.tar.gz |
Always pass vector values on the stack.
Vector values are now always passed on the stack. This isn't particularly
efficient, but it will have to do for now.
Diffstat (limited to 'includes/Cmm.h')
-rw-r--r-- | includes/Cmm.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/includes/Cmm.h b/includes/Cmm.h index 41e7b894d2..1505b1cb6a 100644 --- a/includes/Cmm.h +++ b/includes/Cmm.h @@ -95,9 +95,10 @@ #error Unknown long size #endif -#define F_ float32 -#define D_ float64 -#define L_ bits64 +#define F_ float32 +#define D_ float64 +#define L_ bits64 +#define V16_ bits128 #define SIZEOF_StgDouble 8 #define SIZEOF_StgWord64 8 |