diff options
author | Jie Zhang <jie.zhang@analog.com> | 2010-02-26 15:52:41 +0000 |
---|---|---|
committer | Jie Zhang <jie.zhang@analog.com> | 2010-02-26 15:52:41 +0000 |
commit | 3fde54a228eaf5288bc42ea24b29c0e35b6f4984 (patch) | |
tree | 3db1790b9f10be01eb36178af7f963f62a2773ad /gas | |
parent | e23c0ad8203bbfda72320affa385760e85fa5ac2 (diff) | |
download | gdb-3fde54a228eaf5288bc42ea24b29c0e35b6f4984.zip gdb-3fde54a228eaf5288bc42ea24b29c0e35b6f4984.tar.gz gdb-3fde54a228eaf5288bc42ea24b29c0e35b6f4984.tar.bz2 |
* config/tc-arm.c (neon_select_shape): No need to match
the remaining operands in the shape when one operand does
not match.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e9cf498..5e49710 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,11 @@ 2010-02-26 Jie Zhang <jie@codesourcery.com> + * config/tc-arm.c (neon_select_shape): No need to match + the remaining operands in the shape when one operand does + not match. + +2010-02-26 Jie Zhang <jie@codesourcery.com> + * config/tc-arm.c (do_neon_ld_st_interleave): Reject bad alignment. diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index d172042..69057b7 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -11790,6 +11790,8 @@ neon_select_shape (enum neon_shape shape, ...) case SE_L: break; } + if (!matches) + break; } if (matches) break; |