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.

18 lines
564 B

  1. --- a/libmpeg2/motion_comp_arm_s.S
  2. +++ b/libmpeg2/motion_comp_arm_s.S
  3. @@ -19,6 +19,15 @@
  4. @ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  5. +@ Data preload is supported only by ARM V5TE and above
  6. +
  7. +#if (defined (__ARM_ARCH_2__) || defined (__ARM_ARCH_3__) \
  8. + || defined (__ARM_ARCH_3M__) || defined (__ARM_ARCH_4__) \
  9. + || defined (__ARM_ARCH_4T__) || defined (__ARM_ARCH_5__) \
  10. + || defined (__ARM_ARCH_5T__))
  11. +.macro pld reg
  12. +.endm
  13. +#endif
  14. .text
  15. @ ----------------------------------------------------------------