From 2a4e616df65f8d87d17b5a76233839de261a431e Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 29 Aug 2012 17:59:32 +0000 Subject: Clean this up slightly, doesn't really fall through. llvm-svn: 162848 --- llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'llvm/lib/CodeGen/AsmPrinter/DIE.cpp') diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp index c55e5f7b530..0885285b1bc 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp @@ -209,8 +209,7 @@ void DIEInteger::EmitValue(AsmPrinter *Asm, unsigned Form) const { /// unsigned DIEInteger::SizeOf(AsmPrinter *AP, unsigned Form) const { switch (Form) { - case dwarf::DW_FORM_flag_present: // Fall thru - return 0; + case dwarf::DW_FORM_flag_present: return 0; case dwarf::DW_FORM_flag: // Fall thru case dwarf::DW_FORM_ref1: // Fall thru case dwarf::DW_FORM_data1: return sizeof(int8_t); -- cgit v1.2.3