summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Delete unused EmitByteSwap methodChris Lattner2003-10-231-49/+43
| | | | | | Implement mul/div/rem constant expressions llvm-svn: 9424
* Check in initial version of ipcpChris Lattner2003-10-231-0/+110
| | | | llvm-svn: 9423
* Include new prototypeChris Lattner2003-10-231-0/+6
| | | | llvm-svn: 9422
* Make code layout more consistent.Misha Brukman2003-10-231-58/+54
| | | | llvm-svn: 9418
* Actually share constants local to a function!Chris Lattner2003-10-231-2/+7
| | | | llvm-svn: 9417
* * Order includes according to style guideMisha Brukman2003-10-231-105/+106
| | | | | | | * Convert tabs to spaces * Make code fit within 80 columns llvm-svn: 9416
* * Stop referring to llvmbugs mailing list, point them to BugzillaMisha Brukman2003-10-231-5/+7
| | | | | | | | * Use ASCII (c) instead of the special character, which may not display correctly for everyone * Wrap at 80 columns llvm-svn: 9415
* Update testChris Lattner2003-10-232-3/+3
| | | | llvm-svn: 9414
* document real source of bugChris Lattner2003-10-231-0/+3
| | | | llvm-svn: 9413
* Added new license information in preparation for LLVM 1.0.John Criswell2003-10-231-1/+65
| | | | llvm-svn: 9410
* fix testChris Lattner2003-10-231-0/+3
| | | | llvm-svn: 9409
* Fix testChris Lattner2003-10-232-2/+2
| | | | llvm-svn: 9408
* Fix buggy testChris Lattner2003-10-231-1/+1
| | | | llvm-svn: 9407
* Fix an assertion failure in BugpointChris Lattner2003-10-231-0/+6
| | | | llvm-svn: 9406
* Do not report errors if QMTest returns a non-zero value.John Criswell2003-10-231-2/+2
| | | | llvm-svn: 9404
* Fix bug: instcombine/2003-10-23-InstcombineNullFail.llChris Lattner2003-10-231-0/+11
| | | | llvm-svn: 9403
* A new testcase for an instcombine miscompilation!Chris Lattner2003-10-231-0/+10
| | | | llvm-svn: 9402
* Fix apparent typo in head-of-file comment.Brian Gaeke2003-10-231-1/+1
| | | | llvm-svn: 9400
* Minor editsChris Lattner2003-10-231-14/+21
| | | | llvm-svn: 9399
* Make this pass substantially stronger by having it delete dead return valuesChris Lattner2003-10-231-127/+354
| | | | | | | | | as well as arguments. Now it can delete arguments and return values which are only passed into other arguments or are returned, if they are dead. This causes it to delete several hundred extra args/retvals from the C++ hello world program, shrinking it by about 2K. llvm-svn: 9398
* To say this file is obsolete to understate the obviousChris Lattner2003-10-231-15/+0
| | | | llvm-svn: 9397
* Really close the <li> tags.Misha Brukman2003-10-231-22/+22
| | | | llvm-svn: 9396
* Remove extraneous comments.Misha Brukman2003-10-231-3/+0
| | | | llvm-svn: 9395
* * Quote a value in <font> tag.Misha Brukman2003-10-231-2/+2
| | | | | | * Let CVS figure out the last-modified-date for us llvm-svn: 9394
* * Use UTF-8 instead of ISO-8859-1Misha Brukman2003-10-231-38/+47
| | | | | | | | * Use stylesheet instead of explicit <font> formatting * Stop using <ul> for layout * Close <li> tags llvm-svn: 9393
* * Use UTF-8 instead of soon-to-be-extinct ISO-8859-1 ;)Misha Brukman2003-10-221-177/+232
| | | | | | | | * Use stylesheets instead of explicit <font> tags * Stop using <ul> for spacing layout * Close <a> and <p> tags llvm-svn: 9392
* We will distributed this stylesheet with the documentation, as well as use itMisha Brukman2003-10-221-0/+27
| | | | | | | | (via import) in the online version. * Added styles for documentation headers, sections, etc. llvm-svn: 9391
* This important patch fixes two warnings in the linker which can occur from ↵Chris Lattner2003-10-221-4/+33
| | | | | | | | linking valid pieces of code llvm-svn: 9390
* New testcase for the deadreturnvalue deletion extension to -deadargelimChris Lattner2003-10-222-0/+55
| | | | llvm-svn: 9389
* Change the type of FnAllocState.Brian Gaeke2003-10-221-1/+1
| | | | llvm-svn: 9388
* Don't worry about converting each function's reg. alloc. state into One BigBrian Gaeke2003-10-221-20/+21
| | | | | | | | Constant early on, because we can do it in doFinalization. Tighten up a comment. llvm-svn: 9387
* Add prototype for verifySavedState().Brian Gaeke2003-10-221-0/+1
| | | | llvm-svn: 9386
* Doxygenify method comments.Brian Gaeke2003-10-221-207/+154
| | | | | | | | Try to improve method comments a little. Get rid of some excess whitespace; put braces on previous line when possible. Add stub for method to verify the work of saveState(). llvm-svn: 9385
* This is a disgusting hack that improves code substantially, by makingChris Lattner2003-10-221-2/+122
| | | | | | callgraphSCC passes more effective. llvm-svn: 9384
* Clarify our testing experience.Brian Gaeke2003-10-221-1/+2
| | | | llvm-svn: 9383
* Do not check for strings.h. This is an old, old, old pre-C89 header thatBrian Gaeke2003-10-221-1/+1
| | | | | | absolutely nothing should be using (and it looks like nothing IS using it). llvm-svn: 9381
* I think this file is not included by anything.Brian Gaeke2003-10-221-23/+0
| | | | llvm-svn: 9380
* * Changed URL referring to zion to use llvm insteadMisha Brukman2003-10-221-9/+5
| | | | | | * Close <li> tags llvm-svn: 9378
* Do not add unreachable code to a natural loop!Chris Lattner2003-10-221-1/+4
| | | | llvm-svn: 9377
* Make sure to print labels on nodes without namesChris Lattner2003-10-221-1/+7
| | | | llvm-svn: 9376
* If the basic block has no name, make sure to print the % number of itChris Lattner2003-10-221-1/+7
| | | | llvm-svn: 9375
* Implement the Function::viewCFG* methods, for use in a debugger. Also, theChris Lattner2003-10-221-0/+144
| | | | | | -print-cfg pass now lives here. llvm-svn: 9374
* Add two new function stubs for viewing the CFG of a function inside of theChris Lattner2003-10-221-0/+15
| | | | | | debugger llvm-svn: 9373
* Delete the -print-cfg pass from this fileChris Lattner2003-10-221-67/+2
| | | | llvm-svn: 9372
* Added information on using Bugzilla.John Criswell2003-10-221-4/+18
| | | | | | Removed information on using llvm-bugs to report bugs. llvm-svn: 9371
* Add comments to describe what these functions actually do.Misha Brukman2003-10-221-0/+7
| | | | llvm-svn: 9370
* * Use <cmath> instead of <math.h>Misha Brukman2003-10-221-12/+12
| | | | | | * Order #includes according to LLVM coding standards llvm-svn: 9369
* Removed completely duplicated function comment (an identical one appears later).Misha Brukman2003-10-221-19/+0
| | | | llvm-svn: 9368
* No, really, order the #includes correctly.Misha Brukman2003-10-221-1/+1
| | | | llvm-svn: 9367
* Update the 'used' flag correctlyChris Lattner2003-10-221-6/+7
| | | | llvm-svn: 9366
OpenPOWER on IntegriCloud