Appease clang-format

This commit is contained in:
Merry 2023-02-04 14:09:24 +00:00
parent 43b71c6015
commit 8c9a3e16f5
2 changed files with 6 additions and 2 deletions

View file

@ -99,7 +99,9 @@ A32EmitX64::BlockDescriptor A32EmitX64::Emit(IR::Block& block) {
} }
code.EnableWriting(); code.EnableWriting();
SCOPE_EXIT { code.DisableWriting(); }; SCOPE_EXIT {
code.DisableWriting();
};
const std::vector<HostLoc> gpr_order = [this] { const std::vector<HostLoc> gpr_order = [this] {
std::vector<HostLoc> gprs{any_gpr}; std::vector<HostLoc> gprs{any_gpr};

View file

@ -70,7 +70,9 @@ A64EmitX64::BlockDescriptor A64EmitX64::Emit(IR::Block& block) {
} }
code.EnableWriting(); code.EnableWriting();
SCOPE_EXIT { code.DisableWriting(); }; SCOPE_EXIT {
code.DisableWriting();
};
const std::vector<HostLoc> gpr_order = [this] { const std::vector<HostLoc> gpr_order = [this] {
std::vector<HostLoc> gprs{any_gpr}; std::vector<HostLoc> gprs{any_gpr};