[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2007-05-05 Thread Chris Lattner
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.65 - 1.66 --- Log message: pull some win32 code into common code, add bitcode identification support. --- Diffs of the changes: (+0 -15) Path.inc | 15 --- 1 files changed, 15 deletions(-) Index:

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2007-04-07 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.63 - 1.64 --- Log message: For PR1291: http://llvm.org/PR1291 : Implement the PathWithStatus class and its use throughout lib/System. --- Diffs of the changes: (+15 -17) Path.inc | 32 +++- 1

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc Signals.inc

2007-04-07 Thread Jeff Cohen
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.64 - 1.65 Signals.inc updated: 1.23 - 1.24 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+32 -32) Path.inc| 53 + Signals.inc | 11 +++ 2

Re: [llvm-commits] CVS: llvm/lib/System/Win32/Path.inc Signals.inc

2007-04-07 Thread Reid Spencer
On Sat, 2007-04-07 at 15:47 -0500, Jeff Cohen wrote: Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.64 - 1.65 Signals.inc updated: 1.23 - 1.24 --- Log message: Unbreak VC++ build. Thanks for cleaning up after me, Jeff. Reid. --- Diffs of the changes: (+32 -32)

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2007-03-29 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.59 - 1.60 --- Log message: For PR789: http://llvm.org/PR789 : * Add a method: bool isAbsolute() const, which determines if the path name is absolute or not. * Implement caching of file status information in the Path object.

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2007-03-29 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.60 - 1.61 --- Log message: Add a uniqueID field to the FileStatus structure for Paths. This will map to the inode number on Unix and something far less unique on Windows. The windows case needs to be improved. --- Diffs of the

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2007-03-29 Thread Jeff Cohen
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.61 - 1.62 --- Log message: Determine absolute paths the correct way :) --- Diffs of the changes: (+9 -3) Path.inc | 12 +--- 1 files changed, 9 insertions(+), 3 deletions(-) Index: llvm/lib/System/Win32/Path.inc

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc Signals.inc

2007-03-29 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.62 - 1.63 Signals.inc updated: 1.22 - 1.23 --- Log message: For PR789: http://llvm.org/PR789 : Make the sys::Path::getFileStatus function more efficient by having it return a pointer to the FileStatus structure rather than copy

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.58 - 1.59 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+5 -0) Path.inc |5 + 1 files changed, 5 insertions(+) Index: llvm/lib/System/Win32/Path.inc diff -u llvm/lib/System/Win32/Path.inc:1.58

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-08-24 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.55 - 1.56 --- Log message: For PR797: http://llvm.org/PR797 : Adjust implementation to match the new interface after exception handling was removed in the Unix verison. NOTE: this hasn't been compiled yet! --- Diffs of the

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-08-23 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.53 - 1.54 --- Log message: For PR797: http://llvm.org/PR797 : Remove exception throwing from Path::getDirectoryContents and its users. --- Diffs of the changes: (+10 -6) Path.inc | 16 ++-- 1 files changed, 10

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc Win32.h

2006-08-23 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.54 - 1.55 Win32.h updated: 1.7 - 1.8 --- Log message: For PR797: http://llvm.org/PR797 : Eliminate exception throwing from Path::renamePathOnDisk and adjust its users correspondingly. --- Diffs of the changes: (+6 -5)

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-08-22 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.51 - 1.52 --- Log message: Update for changes in Path class interface for exception removal. --- Diffs of the changes: (+6 -16) Path.inc | 22 ++ 1 files changed, 6 insertions(+), 16 deletions(-)

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-08-22 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.52 - 1.53 --- Log message: For PR797: http://llvm.org/PR797 : Adjust code to compensate for Path class interface change. --- Diffs of the changes: (+10 -5) Path.inc | 15 ++- 1 files changed, 10 insertions(+), 5

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-08-01 Thread Anton Korobeynikov
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.48 - 1.49 --- Log message: Minor fix due to recent API changes --- Diffs of the changes: (+1 -1) Path.inc |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/System/Win32/Path.inc diff -u

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-08-01 Thread Chris Lattner
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.49 - 1.50 --- Log message: elimiante some syscalls --- Diffs of the changes: (+8 -8) Path.inc | 16 1 files changed, 8 insertions(+), 8 deletions(-) Index: llvm/lib/System/Win32/Path.inc diff -u

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-08-01 Thread Chris Lattner
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.50 - 1.51 --- Log message: Remove some now-dead methods. Use getFileStatus instead. --- Diffs of the changes: (+0 -33) Path.inc | 33 - 1 files changed, 33 deletions(-) Index:

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.46 - 1.47 --- Log message: Update win32 for Path::getStatusInfo --- Diffs of the changes: (+6 -4) Path.inc | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-) Index: llvm/lib/System/Win32/Path.inc diff -u

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.47 - 1.48 --- Log message: Modify setStatusInfoOnDisk to not throw an exception. --- Diffs of the changes: (+8 -8) Path.inc | 16 1 files changed, 8 insertions(+), 8 deletions(-) Index:

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-06-08 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.43 - 1.44 --- Log message: For PR804: http://llvm.org/PR804 : Change the file size field of StatusInfo to be uint64_t instead of size_t so that we know it is always 64 bits. This prevents some overflow on systems where size_t is

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-06-05 Thread Reid Spencer
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.42 - 1.43 --- Log message: For PR798: http://llvm.cs.uiuc.edu/PR798 : Add support for Graphviz. Patch contributed by Anton Korobeynikov. --- Diffs of the changes: (+8 -7) Path.inc | 15 --- 1 files changed, 8

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-05-06 Thread Jeff Cohen
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.41 - 1.42 --- Log message: Unlike Unix, Windows won't let a file be implicitly replaced via renaming without explicit permission. --- Diffs of the changes: (+1 -1) Path.inc |2 +- 1 files changed, 1 insertion(+), 1

[llvm-commits] CVS: llvm/lib/System/Win32/Path.inc

2006-04-29 Thread Jeff Cohen
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.40 - 1.41 --- Log message: Mingw32 patches supplied by Anton Korobeynikov. --- Diffs of the changes: (+1 -1) Path.inc |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/System/Win32/Path.inc diff -u