[Mlir-commits] [mlir] 3e4e0fb - mlir/Transforms/BufferPlacement.h: Add missing override

David Blaikie llvmlistbot at llvm.org
Wed Sep 9 18:18:24 PDT 2020


Author: David Blaikie
Date: 2020-09-09T18:18:06-07:00
New Revision: 3e4e0fb2435544acadf3614d3cd7b5f0f8fdfda2

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

LOG: mlir/Transforms/BufferPlacement.h: Add missing override

Added: 
    

Modified: 
    mlir/include/mlir/Transforms/BufferPlacement.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Transforms/BufferPlacement.h b/mlir/include/mlir/Transforms/BufferPlacement.h
index 6d88ac3599cf..8d3e476928b7 100644
--- a/mlir/include/mlir/Transforms/BufferPlacement.h
+++ b/mlir/include/mlir/Transforms/BufferPlacement.h
@@ -158,7 +158,7 @@ class BufferAssignmentFuncOpConverter
 
   /// Performs the actual signature rewriting step.
   LogicalResult matchAndRewrite(mlir::FuncOp, ArrayRef<Value>,
-                                ConversionPatternRewriter &) const;
+                                ConversionPatternRewriter &) const override;
 };
 
 /// Rewrites the `ReturnOp` to conform with the changed function signature.
@@ -235,7 +235,7 @@ class BufferAssignmentCallOpConverter
 
   /// Performs the actual rewriting step.
   LogicalResult matchAndRewrite(CallOp, ArrayRef<Value>,
-                                ConversionPatternRewriter &) const;
+                                ConversionPatternRewriter &) const override;
 };
 
 /// Populates `patterns` with the conversion patterns of buffer


        


More information about the Mlir-commits mailing list