]> git.sesse.net Git - ffmpeg/commitdiff
configure: address a copy-paste typo
authorVicente Olivert Riera <Vincent.Riera@imgtec.com>
Tue, 29 Sep 2015 16:28:33 +0000 (17:28 +0100)
committerLuca Barbato <lu_zero@gentoo.org>
Tue, 29 Sep 2015 16:31:20 +0000 (18:31 +0200)
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>
configure

index cb48ee199dab14d7f7c6acf99473a8243eff9eed..58a8cb6c4aea9d91a1ba675671a89c8b0586eea5 100755 (executable)
--- a/configure
+++ b/configure
@@ -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