Handle 32-byte loads/stores, as created by recently added AVX support.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12571 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/lackey/lk_main.c b/lackey/lk_main.c
index f3ba90a..5d22d1b 100644
--- a/lackey/lk_main.c
+++ b/lackey/lk_main.c
@@ -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);
    }
 }