blob: b088f16f40a82041e75e90417001ad6e1a96edf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- a/pixman/pixman-vmx.c
+++ b/pixman/pixman-vmx.c
@@ -227,7 +227,7 @@
#define COMPUTE_SHIFT_MASKC(dest, source, mask)
# define LOAD_VECTOR(source) \
- v ## source = *((typeof(v ## source)*)source);
+ v ## source = (typeof(v ## source))vec_xl(0, source);
# define LOAD_VECTORS(dest, source) \
LOAD_VECTOR(source); \
|