Bug 416906 - "Incorrect preprocessor syntax" (Replace "#endif !" with "#endif /* */") [p=tglek@mozilla.com (Taras Glek) r=stuart a1.9=schrep]

This commit is contained in:
reed@reedloden.com 2008-02-13 02:34:01 -08:00
parent 89dbbe7a94
commit 6ebe5d23b5
3 changed files with 10 additions and 10 deletions

View File

@ -32,8 +32,8 @@ int SSE2Available = 0;
static int sse2support();
#else
static int sse2supportGCC();
#endif ! HAVE_SSE2_INTEL_MNEMONICS
#endif ! HAVE_SSE2_INTRINSICS
#endif /* HAVE_SSE2_INTEL_MNEMONICS */
#endif /* HAVE_SSE2_INTRINSICS */
/*
@ -71,8 +71,8 @@ jpeg_CreateDecompress (j_decompress_ptr cinfo, int version, size_t structsize)
cpuidDetected = 1;
}
#endif ! HAVE_SSE2_INTRINSICS
#endif ! HAVE_MMX_INTEL_MNEMONICS
#endif /* HAVE_SSE2_INTRINSICS */
#endif /* HAVE_MMX_INTEL_MNEMONICS */
/* For debugging purposes, zero the whole master structure.
* But error manager pointer is already there, so save and restore it.
@ -475,8 +475,8 @@ static int sse2supportGCC()
#if defined(__GNUC__) && defined(__i386__)
#if defined(XP_MACOSX)
return 1;
#endif ! XP_MACOSX
#endif ! GNUC && i386
#endif /* XP_MACOSX */
#endif /* GNUC && i386 */
/* Add checking for SSE2 support for other platforms here */
@ -484,6 +484,6 @@ static int sse2supportGCC()
return 2;
}
#endif ! HAVE_SSE2_INTRINSICS
#endif ! HAVE_SSE2_INTEL_MNEMONICS
#endif /* HAVE_SSE2_INTRINSICS */
#endif /* HAVE_SSE2_INTEL_MNEMONICS */

View File

@ -296,7 +296,7 @@ build_ycc_rgb_table (j_decompress_ptr cinfo)
/* We also add in ONE_HALF so that need not do it in inner loop */
cconvert->Cb_g_tab[i] = (- FIX(0.34414)) * x + ONE_HALF;
}
#endif ! 0
#endif /* 0 */
}

View File

@ -377,7 +377,7 @@ prepare_range_limit_table (j_decompress_ptr cinfo)
MEMCOPY(table + (4 * (MAXJSAMPLE+1) - CENTERJSAMPLE),
cinfo->sample_range_limit, CENTERJSAMPLE * SIZEOF(JSAMPLE));
#endif ! 0
#endif /* 0 */
}