You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
768 B

  1. diff -urN libmpeg2-0.5.1/libmpeg2/motion_comp_arm_s.S libmpeg2-0.5.1.new/libmpeg2/motion_comp_arm_s.S
  2. --- libmpeg2-0.5.1/libmpeg2/motion_comp_arm_s.S 2008-07-09 21:16:05.000000000 +0200
  3. +++ libmpeg2-0.5.1.new/libmpeg2/motion_comp_arm_s.S 2012-07-30 15:22:58.664964215 +0200
  4. @@ -19,6 +19,15 @@
  5. @ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  6. +@ Data preload is supported only by ARM V5TE and above
  7. +
  8. +#if (defined (__ARM_ARCH_2__) || defined (__ARM_ARCH_3__) \
  9. + || defined (__ARM_ARCH_3M__) || defined (__ARM_ARCH_4__) \
  10. + || defined (__ARM_ARCH_4T__) || defined (__ARM_ARCH_5__) \
  11. + || defined (__ARM_ARCH_5T__))
  12. +.macro pld reg
  13. +.endm
  14. +#endif
  15. .text
  16. @ ----------------------------------------------------------------