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:
b07ec96
)
Fixing a warning about control reaching the end of a non-void function.
author
Aaron Ballman
<aaron@aaronballman.com>
Fri, 16 Aug 2013 01:43:31 +0000
(
01:43
+0000)
committer
Aaron Ballman
<aaron@aaronballman.com>
Fri, 16 Aug 2013 01:43:31 +0000
(
01:43
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188524
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/TableGen/CodeGenInstruction.cpp
patch
|
blob
|
history
diff --git
a/utils/TableGen/CodeGenInstruction.cpp
b/utils/TableGen/CodeGenInstruction.cpp
index 367320498f59e1ee7f50f4fe0d86c6e6c9c7751f..8ec7682985faa2ea1eb86d06205176af62f78c0f 100644
(file)
--- a/
utils/TableGen/CodeGenInstruction.cpp
+++ b/
utils/TableGen/CodeGenInstruction.cpp
@@
-192,6
+192,7
@@
CGIOperandList::ParseOperandName(const std::string &Op, bool AllowWholeOp) {
// Otherwise, didn't find it!
PrintFatalError(TheDef->getName() + ": unknown suboperand name in '" + Op + "'");
+ return std::make_pair(0U, 0U);
}
static void ParseConstraint(const std::string &CStr, CGIOperandList &Ops) {