summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2016-06-24 10:41:46 +0200
committerPierre Bourdon <delroth@gmail.com>2016-06-24 10:41:46 +0200
commit2115e8a4a6814e32107b5205ff5c95bbd3c6e99c (patch)
tree62566332a456f555d2872e24394063f165313888 /Source/Core
parente901533298766c21646620f175baeee986ff5577 (diff)
Add annotations for code sections that need to remain manually formatted.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/PowerPC/Interpreter/Interpreter_Tables.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Tables.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Tables.cpp
index 13d2852f7c..d9fd06c804 100644
--- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Tables.cpp
+++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Tables.cpp
@@ -15,6 +15,7 @@ struct GekkoOPTemplate
GekkoOPInfo opinfo;
};
+// clang-format off
static GekkoOPInfo unknownopinfo = { "unknown_instruction", OPTYPE_UNKNOWN, FL_ENDBLOCK, 0, 0, 0, 0 };
static GekkoOPTemplate primarytable[] =
@@ -352,6 +353,8 @@ static GekkoOPTemplate table63_2[] =
{30, Interpreter::fnmsubx, {"fnmsubx", OPTYPE_DOUBLEFP, FL_INOUT_FLOAT_D | FL_IN_FLOAT_ABC | FL_RC_BIT_F | FL_USE_FPU | FL_SET_FPRF, 1, 0, 0, 0}},
{31, Interpreter::fnmaddx, {"fnmaddx", OPTYPE_DOUBLEFP, FL_INOUT_FLOAT_D | FL_IN_FLOAT_ABC | FL_RC_BIT_F | FL_USE_FPU | FL_SET_FPRF, 1, 0, 0, 0}},
};
+// clang-format on
+
namespace InterpreterTables
{