From c74b4615071151b20fb1f82b11f85c2a1ba53e75 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 7 Apr 2007 18:53:16 +0000 Subject: For PR1291: Change uses of sys::Path class to sys::PathWithStatus in those places where the file status information is needed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35743 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Debugger/ProgramInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Debugger/ProgramInfo.cpp') diff --git a/lib/Debugger/ProgramInfo.cpp b/lib/Debugger/ProgramInfo.cpp index d811f6075b..833fe7ca16 100644 --- a/lib/Debugger/ProgramInfo.cpp +++ b/lib/Debugger/ProgramInfo.cpp @@ -195,7 +195,7 @@ void SourceFunctionInfo::getSourceLocation(unsigned &RetLineNo, ProgramInfo::ProgramInfo(Module *m) : M(m), ProgramTimeStamp(0,0) { assert(M && "Cannot create program information with a null module!"); const sys::FileStatus *Stat; - Stat = sys::Path(M->getModuleIdentifier()).getFileStatus(); + Stat = sys::PathWithStatus(M->getModuleIdentifier()).getFileStatus(); if (Stat) ProgramTimeStamp = Stat->getTimestamp(); -- cgit v1.2.3-18-g5258