Appease clang-format
This commit is contained in:
parent
43b71c6015
commit
8c9a3e16f5
2 changed files with 6 additions and 2 deletions
|
@ -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…
Reference in a new issue