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

Side by Side Diff: simd/jsimdext.inc

Issue 1948123002: Add PRIVATE flags to global symbols (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@master
Patch Set: Response to comments Created 4 years, 7 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
« no previous file with comments | « 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 pop r13 361 pop r13
362 pop r12 362 pop r12
363 pop r11 363 pop r11
364 pop r10 364 pop r10
365 %endmacro 365 %endmacro
366 366
367 %endif 367 %endif
368 368
369 %endif 369 %endif
370 370
371 ; Begin chromium edits
372 %ifdef MACHO ; ----(nasm -fmacho -DMACHO ...)--------
373 %define PRIVATE :private_extern
374 %elifdef ELF ; ----(nasm -felf[64] -DELF ...)------------
375 %define PRIVATE :hidden
376 %else
377 %define PRIVATE
378 %endif
379 ; End chromium edits
380
371 ; -------------------------------------------------------------------------- 381 ; --------------------------------------------------------------------------
372 ; Defines picked up from the C headers 382 ; Defines picked up from the C headers
373 ; 383 ;
374 %include "jsimdcfg.inc" 384 %include "jsimdcfg.inc"
375 385
376 ; -------------------------------------------------------------------------- 386 ; --------------------------------------------------------------------------
OLDNEW
« no previous file with comments | « simd/jsimdcpu.asm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698