Fixed a cut&paste error introduced in r141336.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144637 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Abramo Bagnara 2011-11-15 11:25:38 +00:00
Родитель 64482c6ddb
Коммит f7ce19400b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2001,7 +2001,7 @@ void CastOperation::CheckCStyleCast() {
DestType->isArithmeticType()) { DestType->isArithmeticType()) {
Self.Diag(SrcExpr.get()->getLocStart(), Self.Diag(SrcExpr.get()->getLocStart(),
diag::err_cast_pointer_to_non_pointer_int) diag::err_cast_pointer_to_non_pointer_int)
<< SrcType << SrcExpr.get()->getSourceRange(); << DestType << SrcExpr.get()->getSourceRange();
SrcExpr = ExprError(); SrcExpr = ExprError();
return; return;
} }