[Mlir-commits] [mlir] dabe679 - Add missing new line after debug logging in MLIRContext (NFC)

Mehdi Amini llvmlistbot at llvm.org
Sun Sep 20 22:55:56 PDT 2020


Author: Mehdi Amini
Date: 2020-09-21T05:55:44Z
New Revision: dabe67948841542d14823976c65baecaaabb9bf1

URL: https://github.com/llvm/llvm-project/commit/dabe67948841542d14823976c65baecaaabb9bf1
DIFF: https://github.com/llvm/llvm-project/commit/dabe67948841542d14823976c65baecaaabb9bf1.diff

LOG: Add missing new line after debug logging in MLIRContext (NFC)

Added: 
    

Modified: 
    mlir/lib/IR/MLIRContext.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/IR/MLIRContext.cpp b/mlir/lib/IR/MLIRContext.cpp
index a6246024a5ae..08a2eea5a01e 100644
--- a/mlir/lib/IR/MLIRContext.cpp
+++ b/mlir/lib/IR/MLIRContext.cpp
@@ -493,7 +493,7 @@ MLIRContext::getOrLoadDialect(StringRef dialectNamespace, TypeID dialectID,
 
   if (!dialect) {
     LLVM_DEBUG(llvm::dbgs()
-               << "Load new dialect in Context" << dialectNamespace);
+               << "Load new dialect in Context" << dialectNamespace << "\n");
 #ifndef NDEBUG
     if (impl.multiThreadedExecutionContext != 0)
       llvm::report_fatal_error(


        


More information about the Mlir-commits mailing list