fix for ticket:268, vector not always a context sensitive keywork
[debian/gnuradio] / gnuradio-core / src / lib / filter / gr_altivec.c
index 01ca95f0dede08423ced72732cdd3c9c730cf479..4161327487431dbd1a0d1d1704bd36ab685d2479 100644 (file)
@@ -22,7 +22,7 @@
 #include <gr_altivec.h>
 
 void
-gr_print_vector_float(FILE *fp, vector float v)
+gr_print_vector_float(FILE *fp, vec_float4 v)
 {
   union v_float_u      u;
   u.v = v;
@@ -30,7 +30,7 @@ gr_print_vector_float(FILE *fp, vector float v)
 }
   
 void
-gr_pvf(FILE *fp, const char *label, vector float v)
+gr_pvf(FILE *fp, const char *label, vec_float4 v)
 {
   fprintf(fp, "%s = ", label);
   gr_print_vector_float(fp, v);