diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-30 18:22:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-30 18:22:13 +0000 |
commit | d27c991cebe48fdf82b5d9eec6c2a1a244f82622 (patch) | |
tree | 540c5d6ba547c04eee48f2e86ce4f39ffd0c26ed /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | f19f58a9360927f8ef50b9a029e8efb780d3d8a8 (diff) |
Fix "Control reaches the end of non-void function" warnings,
patch by David Chisnall.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48963 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 84d534dfbb..80b5c046a7 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -808,6 +808,7 @@ static SDOperand getCopyFromParts(SelectionDAG &DAG, return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val); assert(0 && "Unknown mismatch!"); + return SDOperand(); } /// getCopyToParts - Create a series of nodes that contain the specified value |