[llvm-commits] CVS: llvm/include/llvm/Debugger/ProgramInfo.h

Reid Spencer reid at x10sys.com
Mon Dec 13 09:02:07 PST 2004



Changes in directory llvm/include/llvm/Debugger:

ProgramInfo.h updated: 1.2 -> 1.3
---
Log message:

For PR351: http://llvm.cs.uiuc.edu/PR351 : \
The getFileTimestamp and getFileSize functions have been removed from  \
FileUtilities.{h,cpp}. They are replaced by Path::getTimestamp and  \
Path::getSize,respectively.

---
Diffs of the changes:  (+3 -2)

Index: llvm/include/llvm/Debugger/ProgramInfo.h
diff -u llvm/include/llvm/Debugger/ProgramInfo.h:1.2 llvm/include/llvm/Debugger/ProgramInfo.h:1.3
--- llvm/include/llvm/Debugger/ProgramInfo.h:1.2	Thu Apr 15 10:24:55 2004
+++ llvm/include/llvm/Debugger/ProgramInfo.h	Mon Dec 13 11:01:53 2004
@@ -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 @@
 
     /// 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 @@
 
     /// 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.






More information about the llvm-commits mailing list