1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Fix gcc 3.1 complaint

llvm-svn: 3091
This commit is contained in:
Chris Lattner 2002-07-25 17:37:05 +00:00
parent 4968d78ef0
commit f4d892dffb

View 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();