|
From: <sv...@va...> - 2012-05-21 13:45:06
|
sewardj 2012-05-21 14:44:54 +0100 (Mon, 21 May 2012)
New Revision: 12571
Log:
Handle 32-byte loads/stores, as created by recently added AVX support.
Modified files:
trunk/lackey/lk_main.c
Modified: trunk/lackey/lk_main.c (+3 -1)
===================================================================
--- trunk/lackey/lk_main.c 2012-05-21 12:01:35 +01:00 (rev 12570)
+++ trunk/lackey/lk_main.c 2012-05-21 14:44:54 +01:00 (rev 12571)
@@ -301,7 +301,7 @@
/* --- Types --- */
-#define N_TYPES 10
+#define N_TYPES 11
static Int type2index ( IRType ty )
{
@@ -316,6 +316,7 @@
case Ity_F64: return 7;
case Ity_F128: return 8;
case Ity_V128: return 9;
+ case Ity_V256: return 10;
default: tl_assert(0);
}
}
@@ -333,6 +334,7 @@
case 7: return "F64"; break;
case 8: return "F128"; break;
case 9: return "V128"; break;
+ case 10: return "V256"; break;
default: tl_assert(0);
}
}
|