Browse Source

x86/intmath.h: Fix mull operand constraints

Fixes Ticket1466

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
yang Michael Niedermayer 13 years ago
parent
commit
9b72041f80
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/x86/intmath.h

+ 1
- 1
libavutil/x86/intmath.h View File

@@ -28,7 +28,7 @@
__asm__ volatile(\
"mull %3"\
:"=d"(ret), "=a"(dmy)\
:"1"((unsigned int)(a)), "g"(ff_inverse[b])\
:"1"((unsigned int)(a)), "rm"(ff_inverse[b])\
);\
ret;\
})


Loading…
Cancel
Save