1/*****************************************************************************/
2// Copyright 2006-2007 Adobe Systems Incorporated
3// All Rights Reserved.
4//
5// NOTICE: Adobe permits you to use, modify, and distribute this file in
6// accordance with the terms of the Adobe license agreement accompanying it.
7/*****************************************************************************/
8
9/* $Id: //mondo/dng_sdk_1_4/dng_sdk/source/dng_fast_module.h#1 $ */
10/* $DateTime: 2012/05/30 13:28:51 $ */
11/* $Change: 832332 $ */
12/* $Author: tknoll $ */
13
14/** \file
15 * Include file to set optimization to highest level for performance-critical routines.
16 * Normal files should have otpimization set to normal level to save code size as there is less
17 * cache pollution this way.
18 */
19
20/*****************************************************************************/
21
22// Include this file in modules that contain routines that should be as fast
23// as possible, even at the expense of slight code size increases.
24
25/*****************************************************************************/
26
27#ifdef _MSC_VER
28#pragma optimize ("t", on)
29#endif
30
31/*****************************************************************************/
32