summaryrefslogtreecommitdiff
path: root/test/FixIt/bridge-in-non-arc.m
Commit message (Collapse)AuthorAgeFilesLines
* Objective-C arc [qui]. Don't issue the bridge castFariborz Jahanian2013-04-021-4/+4
| | | | | | | | | warning when doing a __bride cast in non-arc mode (which has no retain count effect). // rdar://13514210 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178592 91177308-0d34-0410-b5e6-96231b3b80d8
* Use some heuristics so that when a fixit removes a source range, we tryArgyrios Kyrtzidis2012-12-201-0/+12
to also remove a trailing space if possible. For example, removing '__bridge' from: i = (__bridge I*)p; should result in: i = (I*)p; not: i = ( I*)p; rdar://11314821 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170764 91177308-0d34-0410-b5e6-96231b3b80d8