[Mlir-commits] [mlir] 75eb06f - [MLIR] Missing line breaks in MLIR Language Reference

Mehdi Amini llvmlistbot at llvm.org
Thu Jul 23 22:06:40 PDT 2020


Author: H.-S. Zheng
Date: 2020-07-24T05:06:32Z
New Revision: 75eb06f7535e8941ab3514ecfa106a293af5bb17

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

LOG: [MLIR] Missing line breaks in MLIR Language Reference

 Missing line breaks in the example under `Codegen of Unranked Memref` section.

Reviewed By: mehdi_amini

Differential Revision: https://reviews.llvm.org/D84484

Added: 
    

Modified: 
    mlir/docs/LangRef.md

Removed: 
    


################################################################################
diff  --git a/mlir/docs/LangRef.md b/mlir/docs/LangRef.md
index 59e9fcbfa7c7..eb0530d82546 100644
--- a/mlir/docs/LangRef.md
+++ b/mlir/docs/LangRef.md
@@ -980,9 +980,10 @@ Example:
 
 ```mlir
 // With static ranks, we need a function for each possible argument type
-%A = alloc() : memref<16x32xf32> %B = alloc() :
-memref<16x32x64xf32> call @helper_2D(%A) : (memref<16x32xf32>)->() call
- at helper_3D(%B) : (memref<16x32x64xf32>)->()
+%A = alloc() : memref<16x32xf32>
+%B = alloc() : memref<16x32x64xf32>
+call @helper_2D(%A) : (memref<16x32xf32>)->()
+call @helper_3D(%B) : (memref<16x32x64xf32>)->()
 
 // With unknown rank, the functions can be unified under one unranked type
 %A = alloc() : memref<16x32xf32>


        


More information about the Mlir-commits mailing list