Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added a new attribute, objc_root_class, which informs the compiler when a ↵ | Patrick Beard | 2012-04-06 | 1 | -1/+1 |
| | | | | | | | | | root class is intentionally declared. The warning this inhibits, -Wobjc-root-class, is opt-in for now. However, all clang unit tests that would trigger the warning have been updated to use -Wno-objc-root-class. <rdar://problem/7446698> llvm-svn: 154187 | ||||
* | Selector::getIdentifierInfoForSlot() can return NULL values, a fact | Douglas Gregor | 2011-02-18 | 1 | -0/+14 |
that was ignored in a few places (most notably, code completion). Introduce Selector::getNameForSlot() for the common case where we only care about the name. Audit all uses of getIdentifierInfoForSlot(), switching many over to getNameForSlot(), fixing a few crashers. Fixed <rdar://problem/8939352>, a code-completion crasher. llvm-svn: 125977 |