diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-25 00:05:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-25 00:05:15 +0000 |
commit | 7cad4f2089ad49b20ab3fe8e70aafe470133751f (patch) | |
tree | 30a220a486cbe6a9b1f071860e5143bbe4a68fb9 | |
parent | 4a20997057828e2cc419e0c346b8cbb997132fcc (diff) |
Fix a warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23031 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86ISelPattern.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/X86ISelPattern.cpp b/lib/Target/X86/X86ISelPattern.cpp index 0ebd6299cf..ff0ee633ff 100644 --- a/lib/Target/X86/X86ISelPattern.cpp +++ b/lib/Target/X86/X86ISelPattern.cpp @@ -3984,6 +3984,7 @@ static SDOperand GetAdjustedArgumentStores(SDOperand Chain, int Offset, SelectionDAG &DAG) { MVT::ValueType StoreVT; switch (Chain.getOpcode()) { + default: assert(0 && "Unexpected node!"); case ISD::CALLSEQ_START: // If we found the start of the call sequence, we're done. We actually // strip off the CALLSEQ_START node, to avoid generating the |