Remove useless break after return.

Pointed out by Paul Robinson.

llvm-svn: 231353
This commit is contained in:
Frederic Riss 2015-03-05 06:13:39 +00:00
parent 34843ae51e
commit 6e56345dbc
1 changed files with 0 additions and 1 deletions

View File

@ -264,7 +264,6 @@ unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
if (AP->OutStreamer.getContext().getDwarfVersion() == 2)
return AP->getDataLayout().getPointerSize();
return sizeof(int32_t);
break;
default: llvm_unreachable("DIE Value form not supported yet");
}
}