Rename some confusing double-negative build options:

OPTION_NO_INLINE_DAT     ==> OPTION_INLINE_DAT
OPTION_NO_INLINE_LOGICAL ==> OPTION_INLINE_LOGICAL
OPTION_NO_INLINE_VSTORE  ==> OPTION_INLINE_VSTORE
OPTION_NO_INLINE_IFETCH  ==> OPTION_INLINE_IFETCH

#define/#undef, #if defined()/#if !defined(), etc. updated appropriately.
This commit is contained in:
Fish (David B. Trout)
2013-05-31 12:13:42 -07:00
parent b238b8b23b
commit fc388a5717
6 changed files with 28 additions and 27 deletions

View File

@@ -62,15 +62,15 @@
#endif /* !defined( OPTION_INLINE ) && !defined( NO_OPTION_INLINE ) */
#if defined(OPTION_INLINE)
#undef OPTION_NO_INLINE_DAT /* Performance option */
#undef OPTION_NO_INLINE_LOGICAL /* Performance option */
#undef OPTION_NO_INLINE_VSTORE /* Performance option */
#undef OPTION_NO_INLINE_IFETCH /* Performance option */
#define OPTION_INLINE_DAT /* Performance option */
#define OPTION_INLINE_LOGICAL /* Performance option */
#define OPTION_INLINE_VSTORE /* Performance option */
#define OPTION_INLINE_IFETCH /* Performance option */
#else /* defined(NO_OPTION_INLINE) */
#define OPTION_NO_INLINE_DAT /* Performance option */
#define OPTION_NO_INLINE_LOGICAL /* Performance option */
#define OPTION_NO_INLINE_VSTORE /* Performance option */
#define OPTION_NO_INLINE_IFETCH /* Performance option */
#undef OPTION_INLINE_DAT /* Performance option */
#undef OPTION_INLINE_LOGICAL /* Performance option */
#undef OPTION_INLINE_VSTORE /* Performance option */
#undef OPTION_INLINE_IFETCH /* Performance option */
#endif /* defined(OPTION_INLINE) */
#define OPTION_SINGLE_CPU_DW /* Performance option (ia32) */