Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | FunctionPass's cannot do IPO things. | Chris Lattner | 2006-01-14 | 1 | -4/+0 |
| | | | | llvm-svn: 25315 | ||||
* | When a function takes a variable number of pointer arguments, with a zero | Jeff Cohen | 2005-10-23 | 1 | -2/+3 |
| | | | | | | | | | | | | | pointer marking the end of the list, the zero *must* be cast to the pointer type. An un-cast zero is a 32-bit int, and at least on x86_64, gcc will not extend the zero to 64 bits, thus allowing the upper 32 bits to be random junk. The new END_WITH_NULL macro may be used to annotate a such a function so that GCC (version 4 or newer) will detect the use of un-casted zero at compile time. llvm-svn: 23888 | ||||
* | Remove trailing whitespace | Misha Brukman | 2005-04-21 | 1 | -9/+9 |
| | | | | llvm-svn: 21427 | ||||
* | Initialize with the correct constant type | Chris Lattner | 2004-10-27 | 1 | -2/+3 |
| | | | | llvm-svn: 17270 | ||||
* | Correction to allow compilation with Visual C++. | Reid Spencer | 2004-10-18 | 1 | -2/+2 |
| | | | | | | Patch contributed by Morten Ofstad. Thanks Morten! llvm-svn: 17123 | ||||
* | Update GC intrinsics to take a pointer to the object as well as a pointer | Chris Lattner | 2004-07-22 | 1 | -5/+8 |
| | | | | | | to the field being updated. Patch contributed by Tobias Nurmiranta llvm-svn: 15097 | ||||
* | Expand the coercion of constants to include the newly constant Globals. | Reid Spencer | 2004-07-18 | 1 | -2/+1 |
| | | | | llvm-svn: 14966 | ||||
* | bug 122: | Reid Spencer | 2004-07-18 | 1 | -3/+3 |
| | | | | | | | - Minimize redundant isa<GlobalValue> usage - Correct isa<Constant> for GlobalValue subclass llvm-svn: 14946 | ||||
* | Spelling people's names right is kinda important | Chris Lattner | 2004-05-23 | 1 | -1/+1 |
| | | | | llvm-svn: 13702 | ||||
* | Implement the -lowergc pass which is used by code generators (like the CBE) | Chris Lattner | 2004-05-23 | 1 | -0/+326 |
that do not have builtin support for garbage collection. llvm-svn: 13688 |