diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2015-09-29 17:28:33 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-09-29 18:31:20 +0200 |
commit | 3f1f6053013d0015e9f115a91a11744807649a07 (patch) | |
tree | e0815e0878341e615b0147b07b2a178d9acd5bed | |
parent | 26e8fa3b508eb047e85f4e923fc8e82a1aa656ba (diff) | |
download | ffmpeg-3f1f6053013d0015e9f115a91a11744807649a07.tar.gz |
configure: address a copy-paste typo
The correct instruction for mips32r1 is addi.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4079,7 +4079,7 @@ elif enabled mips; then else check_inline_asm mips32r6 '"aui $0, $0, 0"' || check_inline_asm mips32r2 '"ext $0, $0, 0, 1"' || - check_inline_asm mips32r1 '"daddi $0, $0, 0"' + check_inline_asm mips32r1 '"addi $0, $0, 0"' fi elif enabled parisc; then |