diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2016-12-20 07:40:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-20 07:40:02 -0700 |
commit | d98e43f69eae1c8e433703c587484b355d641e2d (patch) | |
tree | 8d4efd79ad73be7449028aaa8f0d6c6d249b2322 | |
parent | Merge pull request #626 from timshannon/patch-1 (diff) | |
parent | [ppc64] added missing variable (diff) | |
download | dedo-d98e43f69eae1c8e433703c587484b355d641e2d.tar.gz dedo-d98e43f69eae1c8e433703c587484b355d641e2d.tar.xz |
Merge pull request #618 from tbe/master
[ppc64] added missing variable
-rw-r--r-- | bolt_ppc64.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bolt_ppc64.go b/bolt_ppc64.go index 2dc6be0..9331d97 100644 --- a/bolt_ppc64.go +++ b/bolt_ppc64.go @@ -7,3 +7,6 @@ const maxMapSize = 0xFFFFFFFFFFFF // 256TB // maxAllocSize is the size used when creating array pointers. const maxAllocSize = 0x7FFFFFFF + +// Are unaligned load/stores broken on this arch? +var brokenUnaligned = false |