projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
599a7dc
)
Remove useless break after return.
author
Frederic Riss
<friss@apple.com>
Thu, 5 Mar 2015 06:13:39 +0000
(06:13 +0000)
committer
Frederic Riss
<friss@apple.com>
Thu, 5 Mar 2015 06:13:39 +0000
(06:13 +0000)
Pointed out by Paul Robinson.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231353
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/AsmPrinter/DIE.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/AsmPrinter/DIE.cpp
b/lib/CodeGen/AsmPrinter/DIE.cpp
index f5157acac5820dcb1a4c627d562aa54cc3006f52..860293bb9f6078df075df88ba03ad35d5b7ce7cd 100644
(file)
--- a/
lib/CodeGen/AsmPrinter/DIE.cpp
+++ b/
lib/CodeGen/AsmPrinter/DIE.cpp
@@
-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");
}
}