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:
8b01c82
)
Silence GCC's -Wreturn-type warning.
author
Benjamin Kramer
<benny.kra@googlemail.com>
Sat, 28 Jan 2012 15:28:41 +0000
(15:28 +0000)
committer
Benjamin Kramer
<benny.kra@googlemail.com>
Sat, 28 Jan 2012 15:28:41 +0000
(15:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149179
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/MC/MCParser/AsmParser.cpp
patch
|
blob
|
history
diff --git
a/lib/MC/MCParser/AsmParser.cpp
b/lib/MC/MCParser/AsmParser.cpp
index c5a483c1448ad3c68266d4075b5d00dd26960b34..01f68e3dca8005147d6f88d9c62f1cec276a0597 100644
(file)
--- a/
lib/MC/MCParser/AsmParser.cpp
+++ b/
lib/MC/MCParser/AsmParser.cpp
@@
-30,6
+30,7
@@
#include "llvm/MC/MCSymbol.h"
#include "llvm/MC/MCTargetAsmParser.h"
#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/MathExtras.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/SourceMgr.h"
@@
-1572,6
+1573,8
@@
static bool IsUsedIn(const MCSymbol *Sym, const MCExpr *Value) {
case MCExpr::Unary:
return IsUsedIn(Sym, static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
}
+
+ llvm_unreachable("Unknown expr kind!");
}
bool AsmParser::ParseAssignment(StringRef Name, bool allow_redef) {