diff options
author | Eric Christopher <echristo@gmail.com> | 2019-12-10 15:02:29 -0800 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2019-12-10 15:04:45 -0800 |
commit | f4a7d5659df7cb56c1baa34a39e9fe2639472741 (patch) | |
tree | bd34fa260eef5598b26ceedb9f330943e947e8a1 | |
parent | bbcdcea4bf8423041108e22dc619f7d5fdae9870 (diff) | |
download | bcm5719-llvm-f4a7d5659df7cb56c1baa34a39e9fe2639472741.tar.gz bcm5719-llvm-f4a7d5659df7cb56c1baa34a39e9fe2639472741.zip |
Remove debugging printf and reformat code.
-rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index f6bcf899a7f..a941d524b7f 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -13010,11 +13010,9 @@ ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, (getLangOpts().getFPRoundingMode() != LangOptions::FPR_ToNearest || getLangOpts().getFPExceptionMode() != LangOptions::FPE_Ignore)) // Mark the current function as usng floating point constrained intrinsics - if (FunctionDecl *F = dyn_cast<FunctionDecl>(CurContext)) -{ + if (FunctionDecl *F = dyn_cast<FunctionDecl>(CurContext)) { F->setUsesFPIntrin(true); - printf("Enclosing function uses fp intrinsics\n"); -} + } // Some of the binary operations require promoting operands of half vector to // float vectors and truncating the result back to half vector. For now, we do |