diff options
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index ee40f5774d0..36dca9be193 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -2427,7 +2427,7 @@ requires_inout (p) int num_matching_alts = 0; int len; - for ( ; c = *p; p += len) + for ( ; (c = *p); p += len) { len = CONSTRAINT_LEN (c, p); switch (c) |