Fix gcc 3.1 complaint
authorChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 17:37:05 +0000 (17:37 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 25 Jul 2002 17:37:05 +0000 (17:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3091 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Interpreter/Execution.cpp

index b2eb378b407506ef21cbb1f86f61591ec304ce35..77d801129a4cedb18e969b6748181323be390899 100644 (file)
@@ -1376,7 +1376,7 @@ void Interpreter::infoValue(const std::string &Name) {
 // printStackFrame - Print information about the specified stack frame, or -1
 // for the default one.
 //
-void Interpreter::printStackFrame(int FrameNo = -1) {
+void Interpreter::printStackFrame(int FrameNo) {
   if (FrameNo == -1) FrameNo = CurFrame;
   Function *F = ECStack[FrameNo].CurMethod;
   const Type *RetTy = F->getReturnType();