diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-13 17:01:53 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-13 17:01:53 +0000 |
commit | 9d88d1aaab145e18c8e0fe93544f8a1ff0474866 (patch) | |
tree | 76878e5c34075b7fb47f4cc78dc6636840922da0 /include/llvm/Debugger/ProgramInfo.h | |
parent | 4251ce4b10a35552df67ea624b180ad247960eef (diff) |
For PR351: \
The getFileTimestamp and getFileSize functions have been removed from \
FileUtilities.{h,cpp}. They are replaced by Path::getTimestamp and \
Path::getSize,respectively.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18892 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Debugger/ProgramInfo.h')
-rw-r--r-- | include/llvm/Debugger/ProgramInfo.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Debugger/ProgramInfo.h b/include/llvm/Debugger/ProgramInfo.h index 4420e72418..f7ee77dc31 100644 --- a/include/llvm/Debugger/ProgramInfo.h +++ b/include/llvm/Debugger/ProgramInfo.h @@ -21,6 +21,7 @@ #ifndef LLVM_DEBUGGER_PROGRAMINFO_H #define LLVM_DEBUGGER_PROGRAMINFO_H +#include "llvm/System/TimeValue.h" #include <string> #include <map> #include <vector> @@ -133,7 +134,7 @@ namespace llvm { /// ProgramTimeStamp - This is the timestamp of the executable file that we /// currently have loaded into the debugger. - unsigned long long ProgramTimeStamp; + sys::TimeValue ProgramTimeStamp; /// SourceFiles - This map is used to transform source file descriptors into /// their corresponding SourceFileInfo objects. This mapping owns the @@ -170,7 +171,7 @@ namespace llvm { /// getProgramTimeStamp - Return the time-stamp of the program when it was /// loaded. - unsigned long long getProgramTimeStamp() const { return ProgramTimeStamp; } + sys::TimeValue getProgramTimeStamp() const { return ProgramTimeStamp; } //===------------------------------------------------------------------===// // Interfaces to the source code files that make up the program. |