|
From: <sv...@va...> - 2011-07-24 21:46:30
|
Author: sewardj
Date: 2011-07-24 22:41:41 +0100 (Sun, 24 Jul 2011)
New Revision: 11912
Log:
The cmpxchg16b tests in this need to have 16-aligned addresses;
make it so. Else they die with segfaults on F15.
Modified:
trunk/none/tests/amd64/bug127521-64.c
Modified: trunk/none/tests/amd64/bug127521-64.c
===================================================================
--- trunk/none/tests/amd64/bug127521-64.c 2011-07-24 17:39:10 UTC (rev 11911)
+++ trunk/none/tests/amd64/bug127521-64.c 2011-07-24 21:41:41 UTC (rev 11912)
@@ -66,7 +66,7 @@
ULong memHiIn, ULong memLoIn,
ULong rcxIn, ULong rbxIn )
{
- ULong mem[2];
+ ULong mem[2] __attribute__((aligned(16)));
ULong block[6];
mem[0] = memLoIn;
mem[1] = memHiIn;
|