summaryrefslogtreecommitdiffstats
path: root/x86inc-nasm.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-03-24 13:28:37 +0100
committerRemi Collet <fedora@famillecollet.com>2017-03-24 13:28:37 +0100
commitd5fa1cc72f53d3ee5e1bb2b9c5be2a45959273c4 (patch)
treec4b1d983e4f9d239275e6795e890c4bffc56d176 /x86inc-nasm.patch
Diffstat (limited to 'x86inc-nasm.patch')
-rw-r--r--x86inc-nasm.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/x86inc-nasm.patch b/x86inc-nasm.patch
new file mode 100644
index 0000000..079ac08
--- /dev/null
+++ b/x86inc-nasm.patch
@@ -0,0 +1,25 @@
+commit 7ddb5f599286ab4ce7de4061ab94828cdfee36c6
+Author: KO Myung-Hun <komh@chollian.net>
+Date: Tue Jul 22 10:47:20 2014 +0900
+
+ x86inc: fix compilation with NASM
+
+ Change-Id: I5978921ab1ccad6648a5bde6ad023c3e3430f5f4
+
+diff --git a/third_party/x86inc/x86inc.asm b/third_party/x86inc/x86inc.asm
+index 2134676..99453a9 100644
+--- a/third_party/x86inc/x86inc.asm
++++ b/third_party/x86inc/x86inc.asm
+@@ -234,10 +234,10 @@ ALIGNMODE k7
+ %define r%1mp %2
+ %elif ARCH_X86_64 ; memory
+ %define r%1m [rsp + stack_offset + %6]
+- %define r%1mp qword r %+ %1m
++ %define r%1mp qword r %+ %1 %+ m
+ %else
+ %define r%1m [esp + stack_offset + %6]
+- %define r%1mp dword r %+ %1m
++ %define r%1mp dword r %+ %1 %+ m
+ %endif
+ %define r%1 %2
+ %endmacro