Fix a compile error on compilers that still want a return value
authorDan Gohman <gohman@apple.com>
Mon, 12 May 2008 16:17:19 +0000 (16:17 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 12 May 2008 16:17:19 +0000 (16:17 +0000)
in a non-void function that calls abort.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50969 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 307aeae1b22cc71af0d43a747b8dd05d43405800..4e3db7e9ea69c6b3394d3ceb732be0d4fa2a1ae6 100644 (file)
@@ -4987,6 +4987,7 @@ SDOperand X86TargetLowering::LowerVAARG(SDOperand Op, SelectionDAG &DAG) {
 
   assert(0 && "VAArgInst is not yet implemented for x86-64!");
   abort();
+  return SDOperand();
 }
 
 SDOperand X86TargetLowering::LowerVACOPY(SDOperand Op, SelectionDAG &DAG) {