|
From: <sv...@va...> - 2015-09-09 13:40:35
|
Author: mjw
Date: Wed Sep 9 14:40:23 2015
New Revision: 15647
Log:
libvex_test: Use arm64_[di]MinLine_lg2_szB values that make libvex happy.
Modified:
trunk/none/tests/libvex_test.c
Modified: trunk/none/tests/libvex_test.c
==============================================================================
--- trunk/none/tests/libvex_test.c (original)
+++ trunk/none/tests/libvex_test.c Wed Sep 9 14:40:23 2015
@@ -221,6 +221,10 @@
// Use some values that makes AMD64 happy.
vta.abiinfo_both.guest_stack_redzone_size = 128;
+ // Use some values that makes ARM64 happy.
+ vta.archinfo_guest.arm64_dMinLine_lg2_szB = 6;
+ vta.archinfo_guest.arm64_iMinLine_lg2_szB = 6;
+
// Prepare first for a translation where guest == host
// We will translate the get_guest_arch function
vta.arch_guest = guest_arch;
|