Mercurial > audlegacy-plugins
changeset 929:9631824411bf trunk
[svn] - use C-style vectors (part 2)
author | nenolod |
---|---|
date | Mon, 09 Apr 2007 08:51:31 -0700 |
parents | 88bf800eba26 |
children | 2f742d127b3e |
files | ChangeLog src/madplug/SFMT-params19937.h |
diffstat | 2 files changed, 12 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Apr 09 08:50:46 2007 -0700 +++ b/ChangeLog Mon Apr 09 08:51:31 2007 -0700 @@ -1,3 +1,11 @@ +2007-04-09 15:50:46 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [1984] + - use C-style vectors instead of apple's stuff + + trunk/src/madplug/SFMT-alti.c | 10 +++++----- + 1 file changed, 5 insertions(+), 5 deletions(-) + + 2007-04-09 15:30:03 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [1982] - fix altivec implementation
--- a/src/madplug/SFMT-params19937.h Mon Apr 09 08:50:46 2007 -0700 +++ b/src/madplug/SFMT-params19937.h Mon Apr 09 08:51:31 2007 -0700 @@ -12,11 +12,11 @@ #define PARITY3 0x00000000U #define PARITY4 0x13c9e684U #define ALTI_SL2_PERM \ -(vector unsigned char)(1,2,3,23,5,6,7,0,9,10,11,4,13,14,15,8) +(vector unsigned char){1,2,3,23,5,6,7,0,9,10,11,4,13,14,15,8} #define ALTI_SL2_PERM64 \ -(vector unsigned char)(1,2,3,4,5,6,7,31,9,10,11,12,13,14,15,0) +(vector unsigned char){1,2,3,4,5,6,7,31,9,10,11,12,13,14,15,0} #define ALTI_SR2_PERM \ -(vector unsigned char)(7,0,1,2,11,4,5,6,15,8,9,10,17,12,13,14) +(vector unsigned char){7,0,1,2,11,4,5,6,15,8,9,10,17,12,13,14} #define ALTI_SR2_PERM64 \ -(vector unsigned char)(15,0,1,2,3,4,5,6,17,8,9,10,11,12,13,14) +(vector unsigned char){15,0,1,2,3,4,5,6,17,8,9,10,11,12,13,14} #define IDSTR "SFMT-19937:122-18-1-11-1:dfffffef-ddfecb7f-bffaffff-bffffff6"