Index: source/libvpx/vpx_ports/mem.h |
diff --git a/source/libvpx/vpx_ports/mem.h b/source/libvpx/vpx_ports/mem.h |
index 1cb8c8cd9afcc43fa6c9d658394ce25d3b791c79..0106a45d6e4a5455c8874c481288f23d48a41dda 100644 |
--- a/source/libvpx/vpx_ports/mem.h |
+++ b/source/libvpx/vpx_ports/mem.h |
@@ -24,17 +24,6 @@ |
#define DECLARE_ALIGNED(n,typ,val) typ val |
#endif |
- |
-/* Declare an aligned array on the stack, for situations where the stack |
- * pointer may not have the alignment we expect. Creates an array with a |
- * modified name, then defines val to be a pointer, and aligns that pointer |
- * within the array. |
- */ |
-#define DECLARE_ALIGNED_ARRAY(a,typ,val,n)\ |
- typ val##_[(n)+(a)/sizeof(typ)+1];\ |
- typ *val = (typ*)((((intptr_t)val##_)+(a)-1)&((intptr_t)-(a))) |
- |
- |
/* Indicates that the usage of the specified variable has been audited to assure |
* that it's safe to use uninitialized. Silences 'may be used uninitialized' |
* warnings on gcc. |