summaryrefslogtreecommitdiffstats
path: root/llvm
Commit message (Collapse)AuthorAgeFilesLines
* Added a note about the new llvmgrep utility.Reid Spencer2004-06-231-0/+6
| | | | llvm-svn: 14343
* Fix merging of nodes whose incoming offset is not zero. This unbreaks DSA onChris Lattner2004-06-231-2/+1
| | | | | | several mallocbench programs, including perl. llvm-svn: 14342
* Use new IsNAN() wrapper.Brian Gaeke2004-06-231-15/+2
| | | | llvm-svn: 14340
* Provide prototypes for IsNAN() wrapper.Brian Gaeke2004-06-231-0/+4
| | | | llvm-svn: 14339
* Wrapper for c99 isnan()Brian Gaeke2004-06-221-0/+31
| | | | llvm-svn: 14338
* Regenerated.Brian Gaeke2004-06-221-7/+17
| | | | | | It looks to me like people haven't been running AutoRegen.sh. Grumble grumble. llvm-svn: 14337
* Regenerated.Brian Gaeke2004-06-221-0/+177
| | | | llvm-svn: 14336
* Call custom check (AC_FUNC_ISNAN) instead of using the generic function check.Brian Gaeke2004-06-221-1/+3
| | | | llvm-svn: 14335
* Implement isnan check (AC_FUNC_ISNAN) in terms of three calls to a fairlyBrian Gaeke2004-06-221-0/+31
| | | | | | generic macro AC_SINGLE_CXX_CHECK. llvm-svn: 14334
* Added the llvm/test/Programs/Makefile.test Makefile.John Criswell2004-06-223-30/+41
| | | | | | Added a check for isnan() while I was at it. llvm-svn: 14333
* Add pseudo-registers and register class for 64-bit integer values.Brian Gaeke2004-06-222-2/+31
| | | | llvm-svn: 14332
* link to qmtest-2.0.3 tar fileBrian Gaeke2004-06-221-1/+2
| | | | llvm-svn: 14331
* File requires IPA, moved to lib/Analysis/IPAMisha Brukman2004-06-221-0/+0
| | | | llvm-svn: 14330
* Mention a note about having gccas and gccld in the path when running llvm-gcc.Misha Brukman2004-06-221-0/+3
| | | | llvm-svn: 14328
* File depends on MemoryDepAnalysis (DSA); moved to lib/Analysis/DataStructureMisha Brukman2004-06-221-0/+0
| | | | llvm-svn: 14327
* Files depend on DSA, moved to lib/Analysis/DataStructureMisha Brukman2004-06-222-0/+0
| | | | llvm-svn: 14326
* File depends on DSA, moved to lib/Analysis/DataStructureMisha Brukman2004-06-221-0/+0
| | | | llvm-svn: 14325
* Making an archive version of the CodeGen library is unnecessary if we justMisha Brukman2004-06-221-1/+0
| | | | | | move InstructionLowering itself. llvm-svn: 14324
* Provide archive version of CodeGen library (for those tools that only needMisha Brukman2004-06-221-0/+1
| | | | | | IntrinsicLowering, for instance). llvm-svn: 14323
* Isnan became unorderedChris Lattner2004-06-221-2/+2
| | | | llvm-svn: 14322
* - Added the -nice option for nicing the build processes.Reid Spencer2004-06-221-152/+201
| | | | | | | | | | | | - Added the -gnuplotscript option to specify the GnuPlot script to use. - Added the -templatefile option to specify the HTML template to use. - Moved subroutines to top of file. - Used variables for file names in case we want to change to directories. - Made program track its directory changes in $VERBOSE mode (for debugging) - Added variables to support tracking start time, finish time, and platform details about each nightly test. llvm-svn: 14321
* Regenerated with autoconf-2.57 for AIX detection support.Misha Brukman2004-06-221-30/+31
| | | | llvm-svn: 14320
* Add AIX to the list of recognized operating systems.Misha Brukman2004-06-221-3/+3
| | | | llvm-svn: 14319
* Added start time, finish time, and platform (uname -a output) informationReid Spencer2004-06-221-1/+6
| | | | | | to the top of the template for identification purposes. llvm-svn: 14318
* Fixing broken linksTanya Lattner2004-06-222-3/+3
| | | | llvm-svn: 14317
* If an edge points to a field of another memory object, actually reflect thisChris Lattner2004-06-221-0/+18
| | | | | | in the DOT visualization of the DSGraphs. llvm-svn: 14316
* Removed extra href close tagTanya Lattner2004-06-221-1/+1
| | | | llvm-svn: 14315
* Fixed broken links.Tanya Lattner2004-06-223-6/+6
| | | | llvm-svn: 14313
* Fixing broken link to gcc manualTanya Lattner2004-06-221-1/+1
| | | | llvm-svn: 14312
* test/Libraries have been long gone for a long time now. Since noone noticedChris Lattner2004-06-221-13/+0
| | | | | | tehse were broken, just nuke them. llvm-svn: 14310
* Changing absolute link. Remembering to logout as root ;)Tanya Lattner2004-06-211-1/+1
| | | | llvm-svn: 14309
* Fixed small typo to symtab link.Tanya Lattner2004-06-211-1/+1
| | | | llvm-svn: 14308
* Just a stub command guide for llvm-db for now. Will be filled in later. This ↵Tanya Lattner2004-06-211-0/+26
| | | | | | is not linked off the main command guide web page, but should be once its completed. llvm-svn: 14307
* Fix some broken linksChris Lattner2004-06-213-3/+3
| | | | llvm-svn: 14306
* Order #includes as per style guide.Misha Brukman2004-06-211-1/+1
| | | | llvm-svn: 14305
* Use a reference instead of a pointer for the ostream. The pointer was onlyMisha Brukman2004-06-211-103/+102
| | | | | | | there to assist in the development of llvm-tv, and it no longer has a need to modify the AsmWriter output stream. llvm-svn: 14304
* Direct declaration of namespace-ified globals does not work, must encloseMisha Brukman2004-06-211-3/+4
| | | | | | them with a namespace declaration. llvm-svn: 14303
* Specify variables' namespace directly instead of using an enclosing namespace.Misha Brukman2004-06-211-4/+2
| | | | llvm-svn: 14302
* Move implemented interface header up to the top.Misha Brukman2004-06-211-1/+1
| | | | llvm-svn: 14301
* Spell out `NoFramePointerElim'.Misha Brukman2004-06-211-1/+1
| | | | llvm-svn: 14300
* Spell out `NoFramePointerElim' for readability.Misha Brukman2004-06-213-4/+5
| | | | llvm-svn: 14299
* Use the common `NoFPElim' setting instead of our own.Misha Brukman2004-06-212-10/+4
| | | | llvm-svn: 14298
* Implement `NoFPElim' in a target-agnostic fashion so it can be shared.Misha Brukman2004-06-211-1/+8
| | | | llvm-svn: 14297
* Make a single `NoFPElim' switch available to all targets.Misha Brukman2004-06-211-0/+1
| | | | llvm-svn: 14296
* * Make indentation consistent at 2 charsMisha Brukman2004-06-212-402/+624
| | | | | | | * Doxygenify function comments * Wrap code at 80 cols llvm-svn: 14295
* This file is no longer applicable.Misha Brukman2004-06-211-26/+0
| | | | llvm-svn: 14294
* Let's be consistent: listing format `os/arch'.Misha Brukman2004-06-211-1/+1
| | | | llvm-svn: 14293
* llvm/IntrinsicLowering.h => llvm/CodeGen/IntrinsicLowering.hMisha Brukman2004-06-213-4/+4
| | | | llvm-svn: 14292
* Handle shifts >= 32 bits.Misha Brukman2004-06-211-2/+2
| | | | llvm-svn: 14291
* Intrinsic::isnan has gone away, support for it commented out.Misha Brukman2004-06-212-6/+14
| | | | | | | Intrinsic::isunordered has arrived, and we just use the standard lowering pass for it. llvm-svn: 14290
OpenPOWER on IntegriCloud