]> granicus.if.org Git - clang/commitdiff
[OpenCL][Sema] Improving formatting
authorMarco Antognini <marco.antognini@arm.com>
Mon, 3 Dec 2018 14:03:49 +0000 (14:03 +0000)
committerMarco Antognini <marco.antognini@arm.com>
Mon, 3 Dec 2018 14:03:49 +0000 (14:03 +0000)
Reformat comment added in r348120 following
review https://reviews.llvm.org/D55136.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@348139 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaExpr.cpp

index 03115514e379a6bff8ae8f0375a33260aaceedbf..3b69c6a2f99a88acb496693a5c354527be23d1ad 100644 (file)
@@ -5567,9 +5567,8 @@ Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
       Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) {
     // Extract the return type from the (builtin) function pointer type.
     // FIXME Several builtins still have setType in
-    //       Sema::CheckBuiltinFunctionCall. One should review their
-    //       definitions in Builtins.def to ensure they are correct before
-    //       removing setType calls.
+    // Sema::CheckBuiltinFunctionCall. One should review their definitions in
+    // Builtins.def to ensure they are correct before removing setType calls.
     QualType FnPtrTy = Context.getPointerType(FDecl->getType());
     Result = ImpCastExprToType(Fn, FnPtrTy, CK_BuiltinFnToFnPtr).get();
     ResultTy = FDecl->getCallResultType();