summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-08-29 17:59:32 +0000
committerEric Christopher <echristo@apple.com>2012-08-29 17:59:32 +0000
commit2a4e616df65f8d87d17b5a76233839de261a431e (patch)
treec9cbacc9b5e0ea5c7fc5130000f5e34e94e705f3 /llvm/lib/CodeGen
parentf07bcc527a980077c23ccfb4e57462577fb88bd2 (diff)
downloadbcm5719-llvm-2a4e616df65f8d87d17b5a76233839de261a431e.tar.gz
bcm5719-llvm-2a4e616df65f8d87d17b5a76233839de261a431e.zip
Clean this up slightly, doesn't really fall through.
llvm-svn: 162848
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/DIE.cpp3
1 files changed, 1 insertions, 2 deletions
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);
OpenPOWER on IntegriCloud