diff options
Diffstat (limited to 'gcc/genmodes.cc')
-rw-r--r-- | gcc/genmodes.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/genmodes.cc b/gcc/genmodes.cc index 55ac2ad..5446a3e 100644 --- a/gcc/genmodes.cc +++ b/gcc/genmodes.cc @@ -980,7 +980,7 @@ calc_wider_mode (void) } } -/* Text to add to the constant part of a poly_int_pod initializer in +/* Text to add to the constant part of a poly_int initializer in order to fill out te whole structure. */ #if NUM_POLY_INT_COEFFS == 1 #define ZERO_COEFFS "" @@ -1080,7 +1080,7 @@ extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\ poly_uint16\n\ mode_size_inline (machine_mode mode)\n\ {\n\ - extern %spoly_uint16_pod mode_size[NUM_MACHINE_MODES];\n\ + extern %spoly_uint16 mode_size[NUM_MACHINE_MODES];\n\ gcc_assert (mode >= 0 && mode < NUM_MACHINE_MODES);\n\ switch (mode)\n\ {\n", adj_nunits || adj_bytesize ? "" : "const "); @@ -1114,7 +1114,7 @@ extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\ poly_uint16\n\ mode_nunits_inline (machine_mode mode)\n\ {\n\ - extern %spoly_uint16_pod mode_nunits[NUM_MACHINE_MODES];\n\ + extern %spoly_uint16 mode_nunits[NUM_MACHINE_MODES];\n\ switch (mode)\n\ {\n", adj_nunits ? "" : "const "); @@ -1480,7 +1480,7 @@ emit_mode_precision (void) int c; struct mode_data *m; - print_maybe_const_decl ("%spoly_uint16_pod", "mode_precision", + print_maybe_const_decl ("%spoly_uint16", "mode_precision", "NUM_MACHINE_MODES", adj_nunits); for_all_modes (c, m) @@ -1499,7 +1499,7 @@ emit_mode_size (void) int c; struct mode_data *m; - print_maybe_const_decl ("%spoly_uint16_pod", "mode_size", + print_maybe_const_decl ("%spoly_uint16", "mode_size", "NUM_MACHINE_MODES", adj_nunits || adj_bytesize); for_all_modes (c, m) @@ -1514,7 +1514,7 @@ emit_mode_nunits (void) int c; struct mode_data *m; - print_maybe_const_decl ("%spoly_uint16_pod", "mode_nunits", + print_maybe_const_decl ("%spoly_uint16", "mode_nunits", "NUM_MACHINE_MODES", adj_nunits); for_all_modes (c, m) |