[NFC] clang-format llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
llvm-svn: 312035
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
index 2332270..0b7fdfd 100644
--- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
@@ -964,7 +964,8 @@
bool Supported =
DbgVariableLocation::extractFromMachineInstruction(Location, *DVInst);
// If not Supported, don't even look at Location because it's invalid.
- if (!Supported) continue;
+ if (!Supported)
+ continue;
// Because we cannot express DW_OP_deref in CodeView directly,
// we use a trick: we encode the type as a reference to the
@@ -990,7 +991,8 @@
}
// If we don't know how to handle this range, skip past it.
- if (!Supported || Location.Register == 0 || (Location.Offset && !Location.InMemory))
+ if (!Supported || Location.Register == 0 ||
+ (Location.Offset && !Location.InMemory))
continue;
// Handle the two cases we can handle: indirect in memory and in register.