~ubuntu-branches/ubuntu/utopic/libav/utopic-proposed

« back to all changes in this revision

Viewing changes to libavutil/aarch64/asm.S

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-05-29 07:34:56 UTC
  • Revision ID: package-import@ubuntu.com-20140529073456-q808b3f4saf5z7ui
Tags: 6:10.1-1ubuntu1
* add patch to fix FTBFS on ppc64el, LP: #1263802
* add patch to fix FTBFS on arm64, LP: #1323144

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
.macro  movrel rd, val
57
57
#if CONFIG_PIC
58
 
        adrp            \rd, #:pg_hi21:\val
59
 
        add             \rd, \rd, #:lo12:\val
 
58
        adrp            \rd, :pg_hi21:\val
 
59
        add             \rd, \rd, :lo12:\val
60
60
#else
61
61
        ldr             \rd, =\val
62
62
#endif