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

Side by Side Diff: third_party/libjpeg_turbo/simd/jsimdext.inc

Issue 6246098: Add PRIVATE flags to global symbols.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: '' Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/libjpeg_turbo/simd/jsimdcpu.asm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ; 1 ;
2 ; jsimdext.inc - common declarations 2 ; jsimdext.inc - common declarations
3 ; 3 ;
4 ; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB 4 ; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
5 ; Copyright 2010 D. R. Commander 5 ; Copyright 2010 D. R. Commander
6 ; 6 ;
7 ; Based on 7 ; Based on
8 ; x86 SIMD extension for IJG JPEG library - version 1.02 8 ; x86 SIMD extension for IJG JPEG library - version 1.02
9 ; 9 ;
10 ; Copyright (C) 1999-2006, MIYASAKA Masaru. 10 ; Copyright (C) 1999-2006, MIYASAKA Masaru.
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 362
363 %endif 363 %endif
364 364
365 %endif 365 %endif
366 366
367 ; -------------------------------------------------------------------------- 367 ; --------------------------------------------------------------------------
368 ; Defines picked up from the C headers 368 ; Defines picked up from the C headers
369 ; 369 ;
370 %include "jsimdcfg.inc" 370 %include "jsimdcfg.inc"
371 371
372 ; Begin chromium edits
373 %ifdef MACHO ; ----(nasm -fmacho -DMACHO ...)--------
374 %define PRIVATE :private_extern
375 %elifdef ELF ; ----(nasm -felf[64] -DELF ...)------------
376 %define PRIVATE :hidden
377 %else
378 %define PRIVATE
379 %endif
380 ; End chromium edits
381
372 ; -------------------------------------------------------------------------- 382 ; --------------------------------------------------------------------------
OLDNEW
« no previous file with comments | « third_party/libjpeg_turbo/simd/jsimdcpu.asm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698