- Dec 19, 2004
-
-
Reid Spencer authored
Add a needed include. llvm-svn: 19042
-
Reid Spencer authored
* Pass sys::Path instead of std::string for paths * Correct the types of arguments passed to RunProgramWithTimeout due to its interface using sys::Path instead of std::string * Replace "/dev/null" (not portable) with empty string which sys::Program::ExecuteAndWait recognizes as "redirect to bit bucket" llvm-svn: 19041
-
Reid Spencer authored
* Remove unneeded header files. * Move RedirectFD static function to lib/System/Unix/Program.cpp * Delete RunProgramWithTimeout, now implemented by sys::Program::ExecuteAndWait. RunProgramWithTimeout is now a convenience func. llvm-svn: 19040
-
- Dec 18, 2004
-
-
Jeff Cohen authored
llvm-svn: 19028
-
- Dec 17, 2004
-
-
Chris Lattner authored
llvm-svn: 19024
-
Reid Spencer authored
family of functions so it gets noticed if we ever remove this. llvm-svn: 19022
-
Chris Lattner authored
llvm-svn: 19021
-
Reid Spencer authored
llvm-svn: 19020
-
Chris Lattner authored
Regression/Analysis/GlobalsModRef/purecse.ll. Isn't this what the -Woverload-whatever flag would warn about :) llvm-svn: 19018
-
Chris Lattner authored
llvm-svn: 19007
-
Chris Lattner authored
save small amounts of time for functions that don't call llvm.returnaddress or llvm.frameaddress (which is almost all functions). llvm-svn: 19006
-
Tanya Lattner authored
llvm-svn: 19005
-
Tanya Lattner authored
llvm-svn: 19004
-
Tanya Lattner authored
llvm-svn: 19003
-
Reid Spencer authored
* Make the OutputC and OutputAsm functions work with sys::Path for the output file name instead of using std::string. * Get rid of extraneous "toString" calls. * Change "removeFile" to sys::Path::destroyFile() llvm-svn: 19000
-
Reid Spencer authored
* Remove the "removeFile" function, now implemented by the sys::Path::destroyFile method. * Make the FileRemove work with a sys::Path instead of a std::string llvm-svn: 18999
-
- Dec 16, 2004
-
-
Chris Lattner authored
llvm-svn: 18994
-
Reid Spencer authored
include it any more. llvm-svn: 18993
-
Chris Lattner authored
llvm-svn: 18987
-
Chris Lattner authored
llvm-svn: 18985
-
Chris Lattner authored
of custom rules. llvm-svn: 18984
-
Chris Lattner authored
llvm-svn: 18983
-
Chris Lattner authored
llvm-svn: 18982
-
Jeff Cohen authored
llvm-svn: 18976
-
Chris Lattner authored
llvm-svn: 18974
-
Reid Spencer authored
const because they affect the file system, not the Path object. llvm-svn: 18973
-
- Dec 15, 2004
-
-
Reid Spencer authored
be agnostic to the needs of any specific FE. llvm-svn: 18969
-
Reid Spencer authored
because LLVM should be agnostic to the needs of specific front ends. llvm-svn: 18968
-
Chris Lattner authored
llvm-svn: 18965
-
Chris Lattner authored
llvm-svn: 18964
-
Chris Lattner authored
llvm-svn: 18962
-
Reid Spencer authored
createTemporaryFile semantics where it doesn't create a fully unique name if the basename doesn't exist. This functionality is now optionally provided by the boolean reuse_current parameter to createTemporaryFile and makeUnique. The default values differ because of the way these functions are used in LLVM. llvm-svn: 18961
-
Chris Lattner authored
llvm-svn: 18958
-
Chris Lattner authored
llvm-svn: 18957
-
Chris Lattner authored
llvm-svn: 18955
-
Jeff Cohen authored
llvm-svn: 18954
-
Jeff Cohen authored
llvm-svn: 18953
-
Reid Spencer authored
* Remove #inclusion of FileUtilities.h, not needed any more. * Convert getUniqueFilename -> sys::Pat::makeUnique() llvm-svn: 18948
-
Reid Spencer authored
* Fix implementation and documentation about LLVMGCCDIR/bytecode-libs * Add the makeUnique method, replacement for getUniqueFilename in Support. * Add the sys::CopyFile function, replacement for CopyFile in Support. * Move GetLLVMConfigDir() into generic code area since its generic. llvm-svn: 18947
-
Reid Spencer authored
Remove getUniqueFilename and CopyFile. These are now implemented by sys::Path::makeUnique and sys::CopyFile, respectively. llvm-svn: 18946
-