diff options
Diffstat (limited to 'gcc/gensupport.c')
-rw-r--r-- | gcc/gensupport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gensupport.c b/gcc/gensupport.c index 120614b..b475523 100644 --- a/gcc/gensupport.c +++ b/gcc/gensupport.c @@ -180,7 +180,7 @@ process_rtx (desc, lineno) split = rtx_alloc (DEFINE_SPLIT); i = XVECLEN (desc, 1); - XEXP (split, 0) = rtvec_alloc (i); + XVEC (split, 0) = rtvec_alloc (i); while (--i >= 0) { XVECEXP (split, 0, i) = copy_rtx (XVECEXP (desc, 1, i)); |