diff options
Diffstat (limited to 'gcc/varray.h')
-rw-r--r-- | gcc/varray.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/varray.h b/gcc/varray.h index 130553bb4d2..630a0a3581a 100644 --- a/gcc/varray.h +++ b/gcc/varray.h @@ -188,8 +188,8 @@ extern void varray_check_failed PARAMS ((varray_type, size_t, /* Push X onto VA. T is the name of the field in varray_data corresponding to the type of X. */ -#define VARRAY_PUSH(VA, T, X) \ - do \ +#define VARRAY_PUSH(VA, T, X) \ + do \ { \ if ((VA)->elements_used >= (VA)->num_elements) \ VARRAY_GROW ((VA), 2 * (VA)->num_elements); \ |