diff options
author | Adam Jackson <ajax@nwnk.net> | 2006-03-20 18:43:18 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2006-03-20 18:43:18 +0000 |
commit | 61a020265c5915e3d671d5b2047b81a5d15594c3 (patch) | |
tree | 69420ce689c8ea519c10faeae1d5b3b5dde3c053 /cfb | |
parent | 6eb4e2303aaab8d64e3f6cbc0bbee55689bdcb82 (diff) |
Bug #5549: Fix build for sparc64. (Matthieu Herrb)
Diffstat (limited to 'cfb')
-rw-r--r-- | cfb/cfbrrop.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cfb/cfbrrop.h b/cfb/cfbrrop.h index 6deb7b899..9e7a44c5b 100644 --- a/cfb/cfbrrop.h +++ b/cfb/cfbrrop.h @@ -284,6 +284,7 @@ in this Software without prior written authorization from The Open Group. #define RROP_UNROLL_CASE4(p,i) RROP_UNROLL_CASE2(p,(i)+2) RROP_UNROLL_CASE2(p,i) #define RROP_UNROLL_CASE8(p,i) RROP_UNROLL_CASE4(p,(i)+4) RROP_UNROLL_CASE4(p,i) #define RROP_UNROLL_CASE16(p,i) RROP_UNROLL_CASE8(p,(i)+8) RROP_UNROLL_CASE8(p,i) +#define RROP_UNROLL_CASE32(p,i) RROP_UNROLL_CASE16(p,(i)+16) RROP_UNROLL_CASE16(p,i) #define RROP_UNROLL_CASE3(p) RROP_UNROLL_CASE2(p,2) RROP_UNROLL_CASE1(p,1) #define RROP_UNROLL_CASE7(p) RROP_UNROLL_CASE4(p,4) RROP_UNROLL_CASE3(p) #define RROP_UNROLL_CASE15(p) RROP_UNROLL_CASE8(p,8) RROP_UNROLL_CASE7(p) |