diff options
| author | Fariborz Jahanian <fjahanian@apple.com> | 2013-04-30 00:30:48 +0000 |
|---|---|---|
| committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-04-30 00:30:48 +0000 |
| commit | 3beec2080f809b00f38c149fe0175604332f1830 (patch) | |
| tree | 7dcc037d68f420750f0662e269142056c5a52dbf /clang/lib/Sema/SemaExpr.cpp | |
| parent | 116ace2125e52b2e1625526a0df28340578fe982 (diff) | |
| download | bcm5719-llvm-3beec2080f809b00f38c149fe0175604332f1830.tar.gz bcm5719-llvm-3beec2080f809b00f38c149fe0175604332f1830.zip | |
Objective-C (mostly arc): Under ARC, we often have unneeded qualifiers
in the diagnostics. Remove them when reporting incompatible
Objective-C pointer types. // rdar://13752880.
llvm-svn: 180765
Diffstat (limited to 'clang/lib/Sema/SemaExpr.cpp')
| -rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index f5900c06c79..173ee1e7f81 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -10170,6 +10170,10 @@ bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, if (Hint.isNull() && !CheckInferredResultType) { ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); } + else if (CheckInferredResultType) { + SrcType = SrcType.getUnqualifiedType(); + DstType = DstType.getUnqualifiedType(); + } MayHaveConvFixit = true; break; case IncompatiblePointerSign: |

