aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Add an example to the trunc instruction to clarify trunc to bool.Reid Spencer2007-01-051-0/+1
| | | | | | | Example provided by Baptiste Lepilleur. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32931 91177308-0d34-0410-b5e6-96231b3b80d8
* Correct the documentation for function declarations. They can have dllimportReid Spencer2007-01-051-2/+4
| | | | | | | or extern_weak linkage as well as "externally visible". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32887 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix broken links, reported by Baptiste LepilleurChris Lattner2007-01-041-3/+3
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32882 91177308-0d34-0410-b5e6-96231b3b80d8
* Document this tool as experimental and list its deficiencies.Reid Spencer2007-01-041-3/+28
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32878 91177308-0d34-0410-b5e6-96231b3b80d8
* Clean up usage of "unsigned" and "signed" in the documentation to indicateReid Spencer2007-01-041-20/+21
| | | | | | | | only that specific instructions regard their operands as signed and unsigned not that the operands *are* signed or unsigned. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32874 91177308-0d34-0410-b5e6-96231b3b80d8
* Removed reference to "cnull" because typical users shouldn't need to useBill Wendling2007-01-041-6/+0
| | | | | | | it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32869 91177308-0d34-0410-b5e6-96231b3b80d8
* ding dong llvm-gcc3 is deadChris Lattner2007-01-041-74/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32868 91177308-0d34-0410-b5e6-96231b3b80d8
* gcc 4.1.1 on amd64 is brokenChris Lattner2007-01-041-1/+6
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32867 91177308-0d34-0410-b5e6-96231b3b80d8
* icmp and fcmp do not take packed type operands.Reid Spencer2007-01-041-6/+5
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32864 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove documentation of non-existent cextcc and csretextcc callingReid Spencer2006-12-311-26/+1
| | | | | | | conventions as these have been replaced with parameter attributes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32797 91177308-0d34-0410-b5e6-96231b3b80d8
* One more try on the table formatting.Reid Spencer2006-12-311-1/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32793 91177308-0d34-0410-b5e6-96231b3b80d8
* Clean up some typos and formatting.Reid Spencer2006-12-311-19/+21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32792 91177308-0d34-0410-b5e6-96231b3b80d8
* For PR950:Reid Spencer2006-12-311-276/+306
| | | | | | | | | | | | | Update for signless integer types: 1. Replace [us]byte with i8 2. Replace [u]short with i16 3. Replace [u]int with i32 4. Replace [u]long with i64 5. Document the "define" keyword and use it in all examples. 6. Document parameter attributes and how they affect function types. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32791 91177308-0d34-0410-b5e6-96231b3b80d8
* Typo.Nick Lewycky2006-12-311-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32774 91177308-0d34-0410-b5e6-96231b3b80d8
* Preview of new calling conventions: cextcc and csretextcc to handle explicitReid Spencer2006-12-281-1/+26
| | | | | | | sign and zero extension in function calls. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32764 91177308-0d34-0410-b5e6-96231b3b80d8
* fix a typoChris Lattner2006-12-201-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32713 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove documentation for isSigned and isUnsigned methods of Type class.Reid Spencer2006-12-191-11/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32708 91177308-0d34-0410-b5e6-96231b3b80d8
* update to reflect changes in statistic class.Chris Lattner2006-12-191-8/+10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32691 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix an example that used the old SetCondInst instruction.Reid Spencer2006-12-191-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32681 91177308-0d34-0410-b5e6-96231b3b80d8
* Make changes for removal of SETCC instruction to unify with LangRef.html.Reid Spencer2006-12-191-2/+25
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32680 91177308-0d34-0410-b5e6-96231b3b80d8
* Added example of how to code print() methods so that they will disappearBill Wendling2006-12-171-5/+18
| | | | | | | from the code if "cnull" is passed into them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32641 91177308-0d34-0410-b5e6-96231b3b80d8
* Pass html validation.Jim Laskey2006-12-151-18/+17
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32598 91177308-0d34-0410-b5e6-96231b3b80d8
* Start of PowerPC info.Jim Laskey2006-12-141-0/+222
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32578 91177308-0d34-0410-b5e6-96231b3b80d8
* Fixed some formatting.Bill Wendling2006-12-091-28/+29
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32392 91177308-0d34-0410-b5e6-96231b3b80d8
* Another example of using the llvm IO streams.Bill Wendling2006-12-091-0/+7
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32391 91177308-0d34-0410-b5e6-96231b3b80d8
* Add documentation for how to use the new LLVM streams.Bill Wendling2006-12-091-2/+74
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32390 91177308-0d34-0410-b5e6-96231b3b80d8
* A backwards compatible bc format for packed structsAndrew Lenharth2006-12-081-4/+17
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32360 91177308-0d34-0410-b5e6-96231b3b80d8
* Packed Structure Definitions (docs)Andrew Lenharth2006-12-082-0/+37
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32357 91177308-0d34-0410-b5e6-96231b3b80d8
* Removing even more <iostream> includes.Bill Wendling2006-12-073-18/+18
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32320 91177308-0d34-0410-b5e6-96231b3b80d8
* Tie the ordered/unordered predicate descriptions to their meaning wrtReid Spencer2006-12-061-0/+2
| | | | | | | to QNAN values. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32272 91177308-0d34-0410-b5e6-96231b3b80d8
* We only support 32-bit or 64-bit sequential type indices for GEP. DocumentReid Spencer2006-12-041-4/+4
| | | | | | | it as so. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32197 91177308-0d34-0410-b5e6-96231b3b80d8
* Document the icmp and fcmp constant expressions.Reid Spencer2006-12-041-3/+9
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32188 91177308-0d34-0410-b5e6-96231b3b80d8
* Update for signless GEP semantics.Reid Spencer2006-12-031-6/+7
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32159 91177308-0d34-0410-b5e6-96231b3b80d8
* Add llvm-upgrade documentation.Reid Spencer2006-12-021-0/+66
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32125 91177308-0d34-0410-b5e6-96231b3b80d8
* Document the llvm-upgrade tool.Reid Spencer2006-12-021-0/+3
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32124 91177308-0d34-0410-b5e6-96231b3b80d8
* Update docsJim Laskey2006-11-301-2/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32037 91177308-0d34-0410-b5e6-96231b3b80d8
* remove dead tagChris Lattner2006-11-271-1/+0
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31944 91177308-0d34-0410-b5e6-96231b3b80d8
* Documented the --disable-compression option in gccld and gccas.John Criswell2006-11-212-0/+8
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31892 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix PR1005Chris Lattner2006-11-202-2/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31881 91177308-0d34-0410-b5e6-96231b3b80d8
* Fixed typoTanya Lattner2006-11-201-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31871 91177308-0d34-0410-b5e6-96231b3b80d8
* Adding 1.9 release and removing references to cfrontendTanya Lattner2006-11-201-16/+16
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31870 91177308-0d34-0410-b5e6-96231b3b80d8
* Changing cfrontend dir to llvm-gcc3.4 as the example.Tanya Lattner2006-11-201-4/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31869 91177308-0d34-0410-b5e6-96231b3b80d8
* Corrections from review.Reid Spencer2006-11-191-21/+21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31865 91177308-0d34-0410-b5e6-96231b3b80d8
* Update a reference to the old setcc instruction.Reid Spencer2006-11-181-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31860 91177308-0d34-0410-b5e6-96231b3b80d8
* For PR950:Reid Spencer2006-11-181-48/+162
| | | | | | | | Documentation preview of the upcoming icmp and fcmp instructions that will replace the various setcc instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31859 91177308-0d34-0410-b5e6-96231b3b80d8
* Movind newly-intorudced dll* linkage stuff & windows CC to "supported"Anton Korobeynikov2006-11-181-9/+11
| | | | | | | list git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31847 91177308-0d34-0410-b5e6-96231b3b80d8
* fix bugChris Lattner2006-11-181-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31846 91177308-0d34-0410-b5e6-96231b3b80d8
* first draft of 1.9 release notesChris Lattner2006-11-181-222/+251
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31845 91177308-0d34-0410-b5e6-96231b3b80d8
* Cleaned up the document. Added "doc_code" divisions for code examples.Bill Wendling2006-11-161-199/+274
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31784 91177308-0d34-0410-b5e6-96231b3b80d8
* Add a link to the GEP FAQ.Reid Spencer2006-11-131-2/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31698 91177308-0d34-0410-b5e6-96231b3b80d8