summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-as
Commit message (Collapse)AuthorAgeFilesLines
...
* Turn on compression by default.Reid Spencer2004-11-071-3/+3
| | | | | | Change --compress to --no-compress so compression can be turned off. llvm-svn: 17564
* Add support for compressed bytecodeReid Spencer2004-11-061-1/+4
| | | | llvm-svn: 17535
* Change Library Names Not To Conflict With Others When InstalledReid Spencer2004-10-271-1/+1
| | | | llvm-svn: 17286
* We're not doing automake any moreReid Spencer2004-10-221-650/+0
| | | | llvm-svn: 17168
* We won't use automakeReid Spencer2004-10-221-17/+0
| | | | llvm-svn: 17155
* Initial automake generated Makefile templateReid Spencer2004-10-181-0/+650
| | | | llvm-svn: 17136
* Update to reflect changes in Makefile rules.Reid Spencer2004-10-131-1/+1
| | | | llvm-svn: 16950
* Initial version of automake Makefile.am file.Reid Spencer2004-10-101-0/+17
| | | | llvm-svn: 16894
* Changes For Bug 352Reid Spencer2004-09-011-1/+1
| | | | | | | | Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. llvm-svn: 16137
* Add the LLVMsystem.a library as it is now used for operating systemReid Spencer2004-08-291-1/+1
| | | | | | independence of the tool. llvm-svn: 16092
* The functions in Signal.h are now in the llvm::sys namespace - adjustReid Spencer2004-08-291-2/+2
| | | | llvm-svn: 16091
* Actually, use an exception to stop verification. This gives us much betterChris Lattner2004-07-131-1/+5
| | | | | | error messages because verification stops at the first error. llvm-svn: 14794
* There is no reason to abort and print a stack trace if there is a verificationChris Lattner2004-07-131-1/+1
| | | | | | error. Just print the message like a good little tool. llvm-svn: 14793
* Correct an output typo.Reid Spencer2004-07-111-1/+1
| | | | llvm-svn: 14766
* Add #include <iostream> since Value.h does not include it any more.Reid Spencer2004-07-041-0/+1
| | | | llvm-svn: 14623
* Write .bc files to binary ostreams. This shouldn't change anything on unix,Chris Lattner2004-06-251-2/+4
| | | | | | | but allows us to generate valid code on hosts (like windows) that do newline translation for text files. llvm-svn: 14418
* Header file movedChris Lattner2004-05-271-1/+1
| | | | llvm-svn: 13813
* Make sure to print a stack trace whenever an error signal is delivered to theChris Lattner2004-02-191-0/+1
| | | | | | tool. llvm-svn: 11632
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+2
| | | | llvm-svn: 9903
* Added LLVM copyright to Makefiles.John Criswell2003-10-201-0/+8
| | | | llvm-svn: 9314
* Fix file headerChris Lattner2003-10-201-3/+1
| | | | llvm-svn: 9292
* Added copyright header to all C++ source files.John Criswell2003-10-201-0/+8
| | | | llvm-svn: 9291
* Fix grammar.Misha Brukman2003-10-101-1/+1
| | | | llvm-svn: 9026
* Renamed as.cpp => llvm-as.cpp; this should've happened a long time ago.Misha Brukman2003-10-101-115/+0
| | | | llvm-svn: 9016
* Renaming LLVM `as' to `llvm-as'.Misha Brukman2003-08-283-9/+9
| | | | llvm-svn: 8188
* Add new -disable-verify optionChris Lattner2003-08-182-4/+10
| | | | llvm-svn: 7960
* Add support for: -o -Chris Lattner2003-05-312-14/+22
| | | | llvm-svn: 6485
* Kill using declarationsChris Lattner2003-05-222-30/+28
| | | | llvm-svn: 6292
* - 'analyze' and 'as' now explicitly verify input because AsmParser doesn't.Chris Lattner2002-08-302-0/+14
| | | | llvm-svn: 3552
* Print the tool name when an error comes from so that I can tell whichChris Lattner2002-07-302-10/+14
| | | | | | tool of a pipeline is having issues. llvm-svn: 3168
* *** empty log message ***Chris Lattner2002-07-252-0/+2
| | | | llvm-svn: 3077
* *** empty log message ***Chris Lattner2002-07-231-2/+1
| | | | llvm-svn: 3002
* *** empty log message ***Chris Lattner2002-07-222-8/+24
| | | | llvm-svn: 2985
* Clean up anands patchChris Lattner2002-06-302-2/+0
| | | | llvm-svn: 2812
* Changes for 64bit gccAnand Shukla2002-06-252-10/+14
| | | | llvm-svn: 2797
* Eliminate duplicate or unneccesary #include'sChris Lattner2002-04-292-2/+0
| | | | llvm-svn: 2397
* Use operator << to print modulesChris Lattner2002-04-282-8/+2
| | | | llvm-svn: 2360
* Make sure that there is no case where a signal can occur leaving a partiallyChris Lattner2002-04-182-0/+8
| | | | | | | | written output file. This is important because crashing testcases often write part of a file out, and the testing harness decides the file is up-to-date next time the test is run. llvm-svn: 2303
* Remove asmwriter library from link line, because the useful contents of itChris Lattner2002-04-071-1/+1
| | | | | | have been incorporated into the vmcore library. llvm-svn: 2153
* use dump method instead of Asm/Writer to do debug printingChris Lattner2002-04-072-12/+14
| | | | | | Rename C to M because C used to be 'Class' and now we are 'Module' llvm-svn: 2151
* Since verifier and SlotCalculator are now in VMCore library, libanalysis isChris Lattner2002-03-061-1/+1
| | | | | | no longer required llvm-svn: 1823
* In an amazing fit of stupidity, I flipped the conditional and didn't testChris Lattner2002-01-222-4/+4
| | | | | | it right. Sheesh :) llvm-svn: 1550
* Changes to build successfully with GCC 3.02Chris Lattner2002-01-202-34/+54
| | | | llvm-svn: 1503
* Create a new #include "Support/..." directory structure to move thingsChris Lattner2001-11-272-8/+6
| | | | | | | | from "llvm/Support/..." that are not llvm dependant. Move files and fix #includes llvm-svn: 1400
* Remove extraneous spaceChris Lattner2001-09-091-1/+1
| | | | llvm-svn: 509
* Make use of the new TOOLNAME/USEDLIBS options provided in Makefile.commonChris Lattner2001-09-071-7/+3
| | | | llvm-svn: 501
* Add dependence to libvmcore.Vikram S. Adve2001-08-251-1/+2
| | | | llvm-svn: 370
* Add library depChris Lattner2001-07-251-1/+1
| | | | llvm-svn: 300
* CommandLine library cleanup. No longer use getValue/setValue, instead, just ↵Chris Lattner2001-07-232-32/+32
| | | | | | | | treat the commandline args as the objects they represent and the "right thing" will happen llvm-svn: 283
* Moved inline/llvm/Tools/* to include/llvm/Support/*Chris Lattner2001-07-232-2/+2
| | | | llvm-svn: 279
OpenPOWER on IntegriCloud