implement semantic analysis for __builtin_islessequal and friends.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45239 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Sema/SemaExpr.cpp b/Sema/SemaExpr.cpp
index 9ae5255..6d1d6a6 100644
--- a/Sema/SemaExpr.cpp
+++ b/Sema/SemaExpr.cpp
@@ -647,8 +647,8 @@
break;
case Incompatible:
return Diag(l, diag::err_typecheck_passing_incompatible,
- rhsType.getAsString(), lhsType.getAsString(),
- Fn->getSourceRange(), argExpr->getSourceRange());
+ rhsType.getAsString(), lhsType.getAsString(),
+ Fn->getSourceRange(), argExpr->getSourceRange());
}
}
if (NumArgsInCall > NumArgsInProto && proto->isVariadic()) {