diff options
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r-- | gas/config/tc-i386.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index ef7b64b..7243760 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -8524,6 +8524,12 @@ check_VecOperations (char *op_string, char *op_end) return NULL; } op_string++; + + /* Strip whitespace since the addition of pseudo prefixes + changed how the scrubber treats '{'. */ + if (is_space_char (*op_string)) + ++op_string; + continue; } unknown_vec_op: |