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

Side by Side Diff: google.patch

Issue 8036033: Make libjpeg-turbo PIC-clean on 32-bit Linux. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/libjpeg_turbo/
Patch Set: Created 9 years, 2 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 | « no previous file | simd/jsimdext.inc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Index: jdmarker.c 1 Index: jdmarker.c
2 =================================================================== 2 ===================================================================
3 --- jdmarker.c (revision 677) 3 --- jdmarker.c (revision 677)
4 +++ jdmarker.c (working copy) 4 +++ jdmarker.c (working copy)
5 @@ -906,7 +906,7 @@ 5 @@ -906,7 +906,7 @@
6 } 6 }
7 7
8 if (cinfo->marker->discarded_bytes != 0) { 8 if (cinfo->marker->discarded_bytes != 0) {
9 - WARNMS2(cinfo, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c); 9 - WARNMS2(cinfo, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c);
10 + TRACEMS2(cinfo, 1, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c) ; 10 + TRACEMS2(cinfo, 1, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c) ;
(...skipping 1917 matching lines...) Expand 10 before | Expand all | Expand 10 after
1928 +++ jdhuff.c (working copy) 1928 +++ jdhuff.c (working copy)
1929 @@ -742,7 +742,7 @@ 1929 @@ -742,7 +742,7 @@
1930 * this module, since we'll just re-assign them on the next call.) 1930 * this module, since we'll just re-assign them on the next call.)
1931 */ 1931 */
1932 1932
1933 -#define BUFSIZE (DCTSIZE2 * 2) 1933 -#define BUFSIZE (DCTSIZE2 * 2)
1934 +#define BUFSIZE (DCTSIZE2 * 2u) 1934 +#define BUFSIZE (DCTSIZE2 * 2u)
1935 1935
1936 METHODDEF(boolean) 1936 METHODDEF(boolean)
1937 decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) 1937 decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
1938 Index: simd/jsimdext.inc
1939 ===================================================================
1940 --- simd/jsimdext.inc (revision 97297)
1941 +++ simd/jsimdext.inc (working copy)
1942 @@ -73,6 +73,9 @@
1943 ; * *BSD family Unix using elf format
1944 ; * Unix System V, including Solaris x86, UnixWare and SCO Unix
1945
1946 +; PIC is the default on Linux
1947 +%define PIC
1948 +
1949 ; mark stack as non-executable
1950 section .note.GNU-stack noalloc noexec nowrite progbits
1951
OLDNEW
« no previous file with comments | « no previous file | simd/jsimdext.inc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698