Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(721)

Unified Diff: libvpx/source/libvpx/vpx_ports/emms.asm

Issue 7655050: Define PRIVATE and add it to all global symbols so we don't export assembly functions. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party
Patch Set: added patch Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: libvpx/source/libvpx/vpx_ports/emms.asm
diff --git a/libvpx/source/libvpx/vpx_ports/emms.asm b/libvpx/source/libvpx/vpx_ports/emms.asm
index 306e235ced1859336331d159c832cc00cea141cc..555279a534d5718ac66a2c312c960feed5101b2e 100644
--- a/libvpx/source/libvpx/vpx_ports/emms.asm
+++ b/libvpx/source/libvpx/vpx_ports/emms.asm
@@ -12,14 +12,14 @@
%include "vpx_ports/x86_abi_support.asm"
section .text
- global sym(vpx_reset_mmx_state)
+ global sym(vpx_reset_mmx_state) PRIVATE
sym(vpx_reset_mmx_state):
emms
ret
%ifidn __OUTPUT_FORMAT__,x64
-global sym(vpx_winx64_fldcw)
+global sym(vpx_winx64_fldcw) PRIVATE
sym(vpx_winx64_fldcw):
sub rsp, 8
mov [rsp], rcx ; win x64 specific
@@ -28,7 +28,7 @@ sym(vpx_winx64_fldcw):
ret
-global sym(vpx_winx64_fstcw)
+global sym(vpx_winx64_fstcw) PRIVATE
sym(vpx_winx64_fstcw):
sub rsp, 8
fstcw [rsp]
« no previous file with comments | « libvpx/source/libvpx/vp8/encoder/x86/variance_impl_ssse3.asm ('k') | libvpx/source/libvpx/vpx_ports/x86_abi_support.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698