[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2007-04-07 Thread Reid Spencer
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.55 -> 1.56 --- Log message: For PR1291: http://llvm.org/PR1291 : Change uses of sys::Path class to sys::PathWithStatus in those places where the file status information is needed. --- Diffs of the changes: (+2 -2) FileUtil

[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2007-03-29 Thread Reid Spencer
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.54 -> 1.55 --- 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 it. Adjust uses of the function

[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2007-03-29 Thread Reid Spencer
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.53 -> 1.54 --- Log message: For PR789: http://llvm.org/PR789 : Updates for change in interface of getFileStatus method of sys::Path class. --- Diffs of the changes: (+2 -2) FileUtilities.cpp |4 ++-- 1 files changed, 2

[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2006-11-25 Thread Reid Spencer
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.52 -> 1.53 --- Log message: Make the absolute/relative tolerance information easier to read/understand. --- Diffs of the changes: (+3 -2) FileUtilities.cpp |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) I

[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2006-11-08 Thread Jim Laskey
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.51 -> 1.52 --- Log message: Remove redundant . --- Diffs of the changes: (+0 -1) FileUtilities.cpp |1 - 1 files changed, 1 deletion(-) Index: llvm/lib/Support/FileUtilities.cpp diff -u llvm/lib/Support/FileUtilities.

[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2006-10-18 Thread Reid Spencer
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.50 -> 1.51 --- Log message: Beef up the output from DiffFilesWithTolerance by setting the error code to describe the difference being reported. This assists with understanding differences an llvm-test and should help with bugpo

[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2006-08-23 Thread Reid Spencer
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.49 -> 1.50 --- Log message: For PR797: http://llvm.org/PR797 : Final remove of exception handling from this file. lib/System can no longer throw exceptions so there's no need for try/catch blocks here. --- Diffs of the change

[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2006-08-22 Thread Reid Spencer
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.48 -> 1.49 --- Log message: For PR797: http://llvm.org/PR797 : Adjust users of MappedFile to its new non-throwing interface. Note that in most cases the lazy step of just throwing after a call to MappedFile was installed. Th

[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.47 -> 1.48 --- Log message: Change Path::getStatusInfo to return a boolean and error string on an error instead of throwing an exception. This reduces the amount of code that is exposed to exceptions (e.g. FileUtilities), thou

[llvm-commits] CVS: llvm/lib/Support/FileUtilities.cpp

2006-05-15 Thread Reid Spencer
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.46 -> 1.47 --- Log message: For PR777: http://llvm.cs.uiuc.edu/PR777 : Add an additional catch block to ensure that this function can't throw any exceptions, even one's we're not expecting. --- Diffs of the changes: (+3 -0)