mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-22 13:46:18 +01:00
Add .clang-format file
Using clang-format version 12.0.0
This commit is contained in:
parent
51b155df92
commit
53493b2024
315 changed files with 3178 additions and 2660 deletions
|
|
@ -3,12 +3,13 @@
|
|||
* SPDX-License-Identifier: 0BSD
|
||||
*/
|
||||
|
||||
#include "./fuzz_util.h"
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <fmt/ostream.h>
|
||||
|
||||
#include "./fuzz_util.h"
|
||||
#include "./rand_int.h"
|
||||
#include "dynarmic/common/assert.h"
|
||||
#include "dynarmic/common/fp/fpcr.h"
|
||||
|
|
@ -34,7 +35,7 @@ u32 RandomFpcr() {
|
|||
return fpcr.Value();
|
||||
}
|
||||
|
||||
InstructionGenerator::InstructionGenerator(const char* format){
|
||||
InstructionGenerator::InstructionGenerator(const char* format) {
|
||||
const size_t format_len = std::strlen(format);
|
||||
ASSERT(format_len == 16 || format_len == 32);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue