comparison gcc/vecprim.h @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents a06113de4d67
children
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
21 #define GCC_VECPRIM_H 21 #define GCC_VECPRIM_H
22 22
23 DEF_VEC_I(char); 23 DEF_VEC_I(char);
24 DEF_VEC_ALLOC_I(char,heap); 24 DEF_VEC_ALLOC_I(char,heap);
25 25
26 typedef unsigned char uchar;
27 DEF_VEC_I(uchar);
28 DEF_VEC_ALLOC_I(uchar,heap);
29 DEF_VEC_ALLOC_I(uchar,gc);
30
26 DEF_VEC_I(int); 31 DEF_VEC_I(int);
27 DEF_VEC_ALLOC_I(int,heap); 32 DEF_VEC_ALLOC_I(int,heap);
28 33
29 DEF_VEC_I(unsigned); 34 DEF_VEC_I(unsigned);
30 DEF_VEC_ALLOC_I(unsigned,heap); 35 DEF_VEC_ALLOC_I(unsigned,heap);