mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-01 16:34:06 +08:00
Fix typos in the names of vec_extract & vec_interleave tree codes.
From-SVN: r180448
This commit is contained in:
parent
5d020aa222
commit
c3962b13f7
@ -1,3 +1,9 @@
|
||||
2011-10-25 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* tree.def (VEC_EXTRACT_EVEN_EXPR): Fix typo in text name.
|
||||
(VEC_EXTRACT_ODD_EXPR, VEC_INTERLEAVE_HIGH_EXPR,
|
||||
VEC_INTERLEAVE_LOW_EXPR): Likewise.
|
||||
|
||||
2011-10-21 Mike Stump <mikestump@comcast.net>
|
||||
|
||||
* reload.c (regno_clobbered_p): Fix typo.
|
||||
|
@ -1186,12 +1186,12 @@ DEFTREECODE (VEC_PACK_SAT_EXPR, "vec_pack_sat_expr", tcc_binary, 2)
|
||||
DEFTREECODE (VEC_PACK_FIX_TRUNC_EXPR, "vec_pack_fix_trunc_expr", tcc_binary, 2)
|
||||
|
||||
/* Extract even/odd fields from vectors. */
|
||||
DEFTREECODE (VEC_EXTRACT_EVEN_EXPR, "vec_extracteven_expr", tcc_binary, 2)
|
||||
DEFTREECODE (VEC_EXTRACT_ODD_EXPR, "vec_extractodd_expr", tcc_binary, 2)
|
||||
DEFTREECODE (VEC_EXTRACT_EVEN_EXPR, "vec_extract_even_expr", tcc_binary, 2)
|
||||
DEFTREECODE (VEC_EXTRACT_ODD_EXPR, "vec_extract_odd_expr", tcc_binary, 2)
|
||||
|
||||
/* Merge input vectors interleaving their fields. */
|
||||
DEFTREECODE (VEC_INTERLEAVE_HIGH_EXPR, "vec_interleavehigh_expr", tcc_binary, 2)
|
||||
DEFTREECODE (VEC_INTERLEAVE_LOW_EXPR, "vec_interleavelow_expr", tcc_binary, 2)
|
||||
DEFTREECODE (VEC_INTERLEAVE_HIGH_EXPR, "vec_interleave_high_expr", tcc_binary, 2)
|
||||
DEFTREECODE (VEC_INTERLEAVE_LOW_EXPR, "vec_interleave_low_expr", tcc_binary, 2)
|
||||
|
||||
/* Widening vector shift left in bits.
|
||||
Operand 0 is a vector to be shifted with N elements of size S.
|
||||
|
Loading…
Reference in New Issue
Block a user