|
From: <sv...@va...> - 2012-06-17 05:51:57
|
bart 2012-06-17 06:51:48 +0100 (Sun, 17 Jun 2012)
New Revision: 12648
Log:
Align VG_(threads)[]
Modified files:
trunk/coregrind/m_threadstate.c
Modified: trunk/coregrind/m_threadstate.c (+1 -1)
===================================================================
--- trunk/coregrind/m_threadstate.c 2012-06-17 06:51:03 +01:00 (rev 12647)
+++ trunk/coregrind/m_threadstate.c 2012-06-17 06:51:48 +01:00 (rev 12648)
@@ -44,7 +44,7 @@
ThreadId VG_(running_tid) = VG_INVALID_THREADID;
-ThreadState VG_(threads)[VG_N_THREADS];
+ThreadState VG_(threads)[VG_N_THREADS] __attribute__((aligned(32)));
/*------------------------------------------------------------*/
/*--- Operations. ---*/
|