[Mlir-commits] [mlir] 9033e57 - [mlir][doc] Remove trailing whitespace (NFC)

Jacques Pienaar llvmlistbot at llvm.org
Fri Oct 7 09:06:39 PDT 2022


Author: Jacques Pienaar
Date: 2022-10-07T09:05:49-07:00
New Revision: 9033e57ca5c1198468baa797bc90f97008616572

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

LOG: [mlir][doc] Remove trailing whitespace (NFC)

Added: 
    

Modified: 
    mlir/docs/BytecodeFormat.md

Removed: 
    


################################################################################
diff  --git a/mlir/docs/BytecodeFormat.md b/mlir/docs/BytecodeFormat.md
index d07b461001a36..4d061e9f08d36 100644
--- a/mlir/docs/BytecodeFormat.md
+++ b/mlir/docs/BytecodeFormat.md
@@ -24,7 +24,7 @@ structural concepts layered on top.
 #### Fixed-Width Integers
 
 ```
-  byte                  ::= `0x00`...`0xFF`
+  byte ::= `0x00`...`0xFF`
 ```
 
 Fixed width integers are unsigned integers of a known byte size. The values are
@@ -179,7 +179,7 @@ and types to always be lazily loaded on demand.
 ```
 attr_type_section {
   attrs: attribute[],
-  types: type[]  
+  types: type[]
 }
 attr_type_offset_section {
   numAttrs: varint,
@@ -190,7 +190,7 @@ attr_type_offset_section {
 attr_type_offset_group {
   dialect: varint,
   numElements: varint,
-  offsets: varint[] // (offset << 1) | (hasCustomEncoding) 
+  offsets: varint[] // (offset << 1) | (hasCustomEncoding)
 }
 
 attribute {
@@ -323,7 +323,7 @@ op {
   numSuccessors: varint?,
   successors: varint[],
 
-  regionEncoding: varint?, // (numRegions << 1) | (isIsolatedFromAbove) 
+  regionEncoding: varint?, // (numRegions << 1) | (isIsolatedFromAbove)
   regions: region[]
 }
 ```


        


More information about the Mlir-commits mailing list