summaryrefslogtreecommitdiff
path: root/source/fitz/halftone.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2016-03-25 14:08:07 +0000
committerRobin Watts <robin.watts@artifex.com>2016-03-25 14:28:44 +0000
commit0480f13c021148cde25d2152b503d696130f7163 (patch)
tree7d689291a2d81557ea2e55da6db65abb04a866c0 /source/fitz/halftone.c
parent57e627d1665b738570aa0d5faa8d39eb609ff22a (diff)
downloadmupdf-0480f13c021148cde25d2152b503d696130f7163.tar.xz
Rename ARCH_ARM_CAN_LOAD_UNALIGNED to be ARCH_UNALIGNED_OK
Now covers non-ARM arch's too, and both load/stores.
Diffstat (limited to 'source/fitz/halftone.c')
-rw-r--r--source/fitz/halftone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/halftone.c b/source/fitz/halftone.c
index 186c0aa6..707084c4 100644
--- a/source/fitz/halftone.c
+++ b/source/fitz/halftone.c
@@ -344,7 +344,7 @@ static void
do_threshold_4(const unsigned char * restrict ht_line, const unsigned char * restrict pixmap, unsigned char *restrict out, int w, int ht_len)
__attribute__((naked));
-#ifdef ARCH_ARM_CAN_LOAD_UNALIGNED
+#ifdef ARCH_UNALIGNED_OK
static void
do_threshold_4(const unsigned char * restrict ht_line, const unsigned char * restrict pixmap, unsigned char *restrict out, int w, int ht_len)
{