diff options
| author | Dan Gohman <gohman@apple.com> | 2008-05-12 16:17:19 +0000 | 
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-05-12 16:17:19 +0000 | 
| commit | 906716c40f8b2b4810b18f85cb0158c65ac0c7de (patch) | |
| tree | ba1ac5090d946edc5717a327709d0c73580e9474 /llvm/lib/Target | |
| parent | 6a7087e45561fde7b2303708b42cd25d0e7692bf (diff) | |
| download | bcm5719-llvm-906716c40f8b2b4810b18f85cb0158c65ac0c7de.tar.gz bcm5719-llvm-906716c40f8b2b4810b18f85cb0158c65ac0c7de.zip | |
Fix a compile error on compilers that still want a return value
in a non-void function that calls abort.
llvm-svn: 50969
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 307aeae1b22..4e3db7e9ea6 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -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) { | 

