mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-23 16:59:49 +00:00
aeee732aeb
This reverts commit c1f61d0e26
.
23 lines
549 B
C
23 lines
549 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2019-2021 Paul Cercueil <paul@crapouillou.net>
|
|
*/
|
|
|
|
#ifndef __LIGHTREC_CONFIG_H__
|
|
#define __LIGHTREC_CONFIG_H__
|
|
|
|
#define ENABLE_FIRST_PASS 1
|
|
#define ENABLE_TINYMM 0
|
|
|
|
#define OPT_REMOVE_DIV_BY_ZERO_SEQ 1
|
|
#define OPT_REPLACE_MEMSET 1
|
|
#define OPT_DETECT_IMPOSSIBLE_BRANCHES 1
|
|
#define OPT_TRANSFORM_OPS 1
|
|
#define OPT_LOCAL_BRANCHES 1
|
|
#define OPT_SWITCH_DELAY_SLOTS 1
|
|
#define OPT_FLAG_STORES 1
|
|
#define OPT_FLAG_MULT_DIV 1
|
|
#define OPT_EARLY_UNLOAD 1
|
|
|
|
#endif /* __LIGHTREC_CONFIG_H__ */
|