From: Evan Cheng Date: Fri, 6 Feb 2009 17:51:34 +0000 (+0000) Subject: We don't really need the abort here. This unbreak x86_64 linux build. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=37059d52b7e51577ad2970e0ed00f230788fde18;p=oota-llvm.git We don't really need the abort here. This unbreak x86_64 linux build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63940 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetRegisterInfo.h b/include/llvm/Target/TargetRegisterInfo.h index 52d86bd48ee..6de4f73ed0b 100644 --- a/include/llvm/Target/TargetRegisterInfo.h +++ b/include/llvm/Target/TargetRegisterInfo.h @@ -426,7 +426,6 @@ public: /// values. virtual const TargetRegisterClass *getPointerRegClass() const { assert(0 && "Target didn't implement getPointerRegClass!"); - abort(); return 0; // Must return a value in order to compile with VS 2005 }