diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-07-08 19:04:27 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-07-08 19:04:27 +0000 |
commit | 804e0fea4033e3b91dbc8198cef30de30f141bb5 (patch) | |
tree | 5a0a48c149464165b7df8e87980b51c5964f9f46 /lib/Target/Alpha/AlphaISelLowering.cpp | |
parent | e9b11b431308f4766b73cda93e38ec930c912122 (diff) |
Convert more abort() calls to llvm_report_error().
Also remove trailing semicolon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75027 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaISelLowering.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaISelLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Alpha/AlphaISelLowering.cpp b/lib/Target/Alpha/AlphaISelLowering.cpp index fa0b65609f..176255c93d 100644 --- a/lib/Target/Alpha/AlphaISelLowering.cpp +++ b/lib/Target/Alpha/AlphaISelLowering.cpp @@ -24,6 +24,7 @@ #include "llvm/Module.h" #include "llvm/Intrinsics.h" #include "llvm/Support/CommandLine.h" +#include "llvm/Support/ErrorHandling.h" using namespace llvm; /// AddLiveIn - This helper function adds the specified physical register to the @@ -312,8 +313,7 @@ static SDValue LowerRET(SDValue Op, SelectionDAG &DAG) { SDValue()); switch (Op.getNumOperands()) { default: - assert(0 && "Do not know how to return this many arguments!"); - abort(); + LLVM_UNREACHABLE("Do not know how to return this many arguments!"); case 1: break; //return SDValue(); // ret void is legal |