Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update Clang tests to handle explicitly typed load changes in LLVM. | David Blaikie | 2015-02-27 | 1 | -2/+2 |
| | | | | llvm-svn: 230795 | ||||
* | Don't manually insert L prefixes. | Rafael Espindola | 2014-11-06 | 1 | -1/+1 |
| | | | | | | Simply marking the symbol private conveys the desire to hide them to LLVM. llvm-svn: 221451 | ||||
* | Mark C++ reference parameters as dereferenceable | Hal Finkel | 2014-07-18 | 1 | -2/+2 |
| | | | | | | | | | | | | | | Because references must be initialized using some evaluated expression, they must point to something, and a callee can assume the reference parameter is dereferenceable. Taking advantage of a new attribute just added to LLVM, mark them as such. Because dereferenceability in addrspace(0) implies nonnull in the backend, we don't need both attributes. However, we need to know the size of the object to use the dereferenceable attribute, so for incomplete types we still emit only nonnull. llvm-svn: 213386 | ||||
* | Add 'nonnull' parameter or return attribute when producing an llvm pointer ↵ | Nick Lewycky | 2014-05-28 | 1 | -2/+2 |
| | | | | | | type in a function type where the C++ type is a reference. Update the tests. llvm-svn: 209723 | ||||
* | obj-c++: Fix a IRGen crash when getter is a reference type. | Fariborz Jahanian | 2011-10-17 | 1 | -0/+28 |
Fix is in Sema. // rdar://10153365 llvm-svn: 142249 |