diff options
author | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-08-12 16:29:05 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-08-12 16:29:05 +0000 |
commit | 71295009be694beac7b6f963f1341bdb7cf886da (patch) | |
tree | ec2308a313f8f7d75749a8cdbcd601111458a0c0 | |
parent | 201f1d45466ffe6da15d56518cf16b3c2773358a (diff) | |
download | ffmpeg-71295009be694beac7b6f963f1341bdb7cf886da.tar.gz |
Add #define REGc
Originally committed as revision 5988 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/x86_cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/x86_cpu.h b/libavutil/x86_cpu.h index 8fd5f8600e..548fe42ec6 100644 --- a/libavutil/x86_cpu.h +++ b/libavutil/x86_cpu.h @@ -15,6 +15,7 @@ # define REGBP rbp # define REGa rax # define REGb rbx +# define REGc rcx # define REGSP rsp #else @@ -32,6 +33,7 @@ # define REGBP ebp # define REGa eax # define REGb ebx +# define REGc ecx # define REGSP esp #endif |