mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-06 23:19:58 +01:00
Appease clang-format
This commit is contained in:
parent
43b71c6015
commit
8c9a3e16f5
@ -99,7 +99,9 @@ A32EmitX64::BlockDescriptor A32EmitX64::Emit(IR::Block& block) {
|
||||
}
|
||||
|
||||
code.EnableWriting();
|
||||
SCOPE_EXIT { code.DisableWriting(); };
|
||||
SCOPE_EXIT {
|
||||
code.DisableWriting();
|
||||
};
|
||||
|
||||
const std::vector<HostLoc> gpr_order = [this] {
|
||||
std::vector<HostLoc> gprs{any_gpr};
|
||||
|
||||
@ -70,7 +70,9 @@ A64EmitX64::BlockDescriptor A64EmitX64::Emit(IR::Block& block) {
|
||||
}
|
||||
|
||||
code.EnableWriting();
|
||||
SCOPE_EXIT { code.DisableWriting(); };
|
||||
SCOPE_EXIT {
|
||||
code.DisableWriting();
|
||||
};
|
||||
|
||||
const std::vector<HostLoc> gpr_order = [this] {
|
||||
std::vector<HostLoc> gprs{any_gpr};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user