From: Misha Brukman Date: Wed, 5 Nov 2003 19:48:05 +0000 (+0000) Subject: Since this function returns an int, let's actually return something. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=80f0b57b5d101f5b52d803c570dc74cca47e53f9;p=oota-llvm.git Since this function returns an int, let's actually return something. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9734 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/MRegisterInfo.h b/include/llvm/Target/MRegisterInfo.h index 469242c1a9f..a87c74fc4ec 100644 --- a/include/llvm/Target/MRegisterInfo.h +++ b/include/llvm/Target/MRegisterInfo.h @@ -246,6 +246,7 @@ public: "eliminateCallFramePseudoInstr must be implemented if using" " call frame setup/destroy pseudo instructions!"); assert(0 && "Call Frame Pseudo Instructions do not exist on this target!"); + return -1; } /// processFunctionBeforeFrameFinalized - This method is called immediately