- Mar 05, 2007
-
-
Jeff Cohen authored
llvm-svn: 34922
-
- Mar 04, 2007
-
-
Chris Lattner authored
llvm-svn: 34906
-
- Feb 16, 2007
-
-
Anton Korobeynikov authored
is especially needed for bugpoint. This partly implements PR688 llvm-svn: 34349
-
- Feb 01, 2007
-
-
Chris Lattner authored
llvm-svn: 33746
-
- Jan 23, 2007
-
-
Anton Korobeynikov authored
llvm-svn: 33461
-
- Jan 20, 2007
-
-
Reid Spencer authored
NetBSD also doesn't have pthread_mutexattr_setpshared llvm-svn: 33406
-
- Jan 19, 2007
-
-
Reid Spencer authored
llvm-svn: 33375
-
Reid Spencer authored
needed for output to be generated. On Linux these are both global vars and macro definitions so we have to special case Linux. llvm-svn: 33374
-
Reid Spencer authored
llvm-svn: 33373
-
- Jan 11, 2007
-
-
Reid Spencer authored
or not. This allows DynamicLibrary.cpp to compile on Darwin. llvm-svn: 33064
-
- Jan 10, 2007
-
-
Reid Spencer authored
a bit of a hack but it lets some of the llvm-test programs run. llvm-svn: 33058
-
- Dec 19, 2006
-
-
Anton Korobeynikov authored
absence of dllimport JIT codegen. llvm-svn: 32673
-
- Dec 05, 2006
-
-
Reid Spencer authored
llvm-svn: 32225
-
- Nov 05, 2006
-
-
Jeff Cohen authored
llvm-svn: 31464
-
- Nov 02, 2006
-
-
Reid Spencer authored
llvm-svn: 31373
-
- Sep 14, 2006
-
-
Chris Lattner authored
llvm-svn: 30321
-
Chris Lattner authored
the process in addition to disabling core file emission. This speeds up bugpoint on default-configured macs by several orders of magnitude. llvm-svn: 30317
-
- Sep 01, 2006
-
-
Anton Korobeynikov authored
- Removed warning about clobbered parameter in Bytecode/Reader llvm-svn: 30026
-
- Aug 30, 2006
-
-
Chris Lattner authored
Also, the assert could never fire due to || instead of &&. llvm-svn: 29977
-
- Aug 28, 2006
-
-
Chris Lattner authored
llvm-svn: 29932
-
- Aug 25, 2006
-
-
Reid Spencer authored
Make the Win32 code exception free (untested/uncompiled) which forced some interface changes which had ripple effect. This should be the last of 797. llvm-svn: 29884
-
Reid Spencer authored
Final commit for this bug. This removes the last EH holdouts in LLVM and turns off exception support by using the -fno-exceptions option. This leads to the following reduction in library and executable sizes: DEBUG BUILD RELEASE BUILD before after delta before after delta lib 162,328K 157,616K 4,712 17,864K 16,416K 1,448K bin 571,444K 557,156K 14,288 63,296K 56,996K 6,300K Debug Improvement: 19,000K (2.59%) Release Improvement: 7,748K (9.55%) llvm-svn: 29882
-
- Aug 24, 2006
-
-
Reid Spencer authored
Adjust implementation to match the new interface after exception handling was removed in the Unix verison. NOTE: this hasn't been compiled yet! llvm-svn: 29858
-
- Aug 23, 2006
-
-
Reid Spencer authored
handles exceptions. llvm-svn: 29847
-
Reid Spencer authored
Final removal of exceptions from lib/System and adjustment of users to accommodate. llvm-svn: 29846
-
Reid Spencer authored
Eliminate exception throwing from Path::renamePathOnDisk and adjust its users correspondingly. llvm-svn: 29843
-
Reid Spencer authored
Remove exception throwing from Path::getDirectoryContents and its users. llvm-svn: 29841
-
Reid Spencer authored
Remove exceptions from the Path::create*OnDisk methods. Update their users to handle error messages via arguments and result codes. llvm-svn: 29840
-
Reid Spencer authored
Adjust code to compensate for Path class interface change. llvm-svn: 29837
-
Reid Spencer authored
Change the Path::make*OnDisk methods exception free and adjust their usage. llvm-svn: 29836
-
Reid Spencer authored
llvm-svn: 29834
-
- Aug 22, 2006
-
-
Reid Spencer authored
adjust users of it to compensate. llvm-svn: 29831
-
Reid Spencer authored
just return MinTime if that should ever happen. llvm-svn: 29826
-
Reid Spencer authored
Make MappedFile not throw any exceptions. llvm-svn: 29816
-
Reid Spencer authored
Fix a bug in my last patch that botched file redirection by using explicit scoping of if statements. llvm-svn: 29815
-
Reid Spencer authored
llvm-svn: 29808
-
- Aug 21, 2006
-
-
Reid Spencer authored
Remove all exception code from Program.inc and implement its new interface with an ErrMsg string argument. llvm-svn: 29790
-
Reid Spencer authored
Make sys::Program::ExecuteAndWait not throw exceptions and update any affected code. It now return -9999 to signal that the program couldn't be executed. Only one case (in bugpoint) actually examines the result code. llvm-svn: 29785
-
- Aug 07, 2006
-
-
Reid Spencer authored
llvm-svn: 29541
-
Reid Spencer authored
the removal of directories. Using std::remove is indiscriminate and can lead to the removal of things like /dev/null if run as root. The Path::eraseFromDisk method ensures that we only ever remove regular files or directories, but never character or block special nodes. This should clear up the problem with usage like: llvm-as -o /dev/null which is used in the llvm-test makefiles. llvm-svn: 29540
-