general: Rename files with duplicate names

In MSVC, having files with identical filenames will result into massive slowdowns when compiling.
The approach I have taken to resolve this is renaming the identically named files in frontend/(A32, A64) to (a32, a64)_filename.cpp/h
This commit is contained in:
Morph
2021-12-16 21:34:49 -05:00
committed by merry
parent 4dcebc1822
commit 28714ee75a
91 changed files with 135 additions and 135 deletions

View File

@@ -11,7 +11,7 @@
#include "dynarmic/common/assert.h"
#include "dynarmic/frontend/A32/decoder/asimd.h"
#include "dynarmic/frontend/A32/translate/impl/translate.h"
#include "dynarmic/frontend/A32/translate/impl/a32_translate_impl.h"
#include "dynarmic/interface/A32/config.h"
#include "dynarmic/ir/opcodes.h"