aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/Execution.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-25 17:37:05 +0000
committerChris Lattner <sabre@nondot.org>2002-07-25 17:37:05 +0000
commit601d71595937e9b68402d51411dfc355d1328c31 (patch)
treea1ef2df1871329cdb1b864d5d995741c4fc07cc1 /lib/ExecutionEngine/Interpreter/Execution.cpp
parente95ce74b80c5b366abfa1f67254219bf24b05ea3 (diff)
Fix gcc 3.1 complaint
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3091 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Execution.cpp')
-rw-r--r--lib/ExecutionEngine/Interpreter/Execution.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp
index b2eb378b40..77d801129a 100644
--- a/lib/ExecutionEngine/Interpreter/Execution.cpp
+++ b/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -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();