Formatting consistency.
authorEric Christopher <echristo@apple.com>
Tue, 22 May 2012 18:45:18 +0000 (18:45 +0000)
committerEric Christopher <echristo@apple.com>
Tue, 22 May 2012 18:45:18 +0000 (18:45 +0000)
llvm-svn: 157273

llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp

index 7e6a8ea..63aa021 100644 (file)
@@ -926,9 +926,10 @@ void CompileUnit::constructTypeDIE(DIE &Buffer, DICompositeType CTy) {
   if (!Name.empty())
     addString(&Buffer, dwarf::DW_AT_name, Name);
 
-  if (Tag == dwarf::DW_TAG_enumeration_type || Tag == dwarf::DW_TAG_class_type
-      || Tag == dwarf::DW_TAG_structure_type || Tag == dwarf::DW_TAG_union_type)
-  {
+  if (Tag == dwarf::DW_TAG_enumeration_type ||
+      Tag == dwarf::DW_TAG_class_type ||
+      Tag == dwarf::DW_TAG_structure_type ||
+      Tag == dwarf::DW_TAG_union_type) {
     // Add size if non-zero (derived types might be zero-sized.)
     if (Size)
       addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);