X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fvecprim.h;h=e9ccc52bcb09e93142973e30dd7ed5750f297e66;hb=c88fdff58434a1649af63179686c73ee38b339d3;hp=d4e5ffd9fc0c9e5febdf878817c05c9bc21bb6da;hpb=8c4c00c181e6df4f0a9afc76e4c9edbbc1c2fd41;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/vecprim.h b/gcc/vecprim.h index d4e5ffd9fc0..e9ccc52bcb0 100644 --- a/gcc/vecprim.h +++ b/gcc/vecprim.h @@ -1,5 +1,5 @@ /* VEC types for primitive types - Copyright (C) 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc. This file is part of GCC. @@ -23,7 +23,15 @@ along with GCC; see the file COPYING3. If not see DEF_VEC_I(char); DEF_VEC_ALLOC_I(char,heap); +typedef unsigned char uchar; +DEF_VEC_I(uchar); +DEF_VEC_ALLOC_I(uchar,heap); +DEF_VEC_ALLOC_I(uchar,gc); + DEF_VEC_I(int); DEF_VEC_ALLOC_I(int,heap); +DEF_VEC_I(unsigned); +DEF_VEC_ALLOC_I(unsigned,heap); + #endif /* GCC_VECPRIM_H */