~ubuntu-branches/ubuntu/utopic/ffmpeg-debian/utopic

« back to all changes in this revision

Viewing changes to libavcodec/alpha/asm.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 09:20:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120092053-izz63p40hc98qfgp
Tags: 3:0.svn20090119-1ubuntu1
* merge from debian. LP: #318501
* new version fixes CVE-2008-3230, LP: #253767

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
 
63
63
#ifdef __GNUC__
64
64
#define ldq(p)                                                  \
65
 
    (((union {                                                  \
 
65
    (((const union {                                            \
66
66
        uint64_t __l;                                           \
67
67
        __typeof__(*(p)) __s[sizeof (uint64_t) / sizeof *(p)];  \
68
68
    } *) (p))->__l)
69
69
#define ldl(p)                                                  \
70
 
    (((union {                                                  \
 
70
    (((const union {                                            \
71
71
        int32_t __l;                                            \
72
72
        __typeof__(*(p)) __s[sizeof (int32_t) / sizeof *(p)];   \
73
73
    } *) (p))->__l)