projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f295fee
)
x86: fix rNmp macros with nasm
author
Mans Rullgard
<mans@mansr.com>
Sun, 5 Aug 2012 23:21:36 +0000
(
00:21
+0100)
committer
Mans Rullgard
<mans@mansr.com>
Tue, 7 Aug 2012 14:21:58 +0000
(15:21 +0100)
For some reason, nasm requires this. No harm done to yasm.
Signed-off-by: Mans Rullgard <mans@mansr.com>
libavutil/x86/x86inc.asm
patch
|
blob
|
history
diff --git
a/libavutil/x86/x86inc.asm
b/libavutil/x86/x86inc.asm
index 03e6c0721b94f8b0ec84eeddca48ca069b8f18b0..86c406f1df2e1bc225dd281754d2b68cbe70520f 100644
(file)
--- a/
libavutil/x86/x86inc.asm
+++ b/
libavutil/x86/x86inc.asm
@@
-139,10
+139,10
@@
CPU amdnop
%define r%1mp %2
%elif ARCH_X86_64 ; memory
%define r%1m [rsp + stack_offset + %3]
- %define r%1mp qword r %+ %1m
+ %define r%1mp qword r %+ %1
%+
m
%else
%define r%1m [esp + stack_offset + %3]
- %define r%1mp dword r %+ %1m
+ %define r%1mp dword r %+ %1
%+
m
%endif
%define r%1 %2
%endmacro