[PATCH] D77726: [MLIR] Fix more gcc-5 build failure issues by D77528

Uday Bondhugula via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 8 07:02:32 PDT 2020


bondhugula created this revision.
bondhugula added a reviewer: ftynse.
Herald added subscribers: llvm-commits, frgossen, grosul1, Joonsoo, liufengdb, lucyrfox, mgester, arpith-jacob, nicolasvasilache, antiagainst, shauheen, burmako, jpienaar, rriddle, mehdi_amini.
Herald added a project: LLVM.

820c420d4e1c630b5ead285917c6ecdd2f5092ad did not really fix all build
issues by D77528 <https://reviews.llvm.org/D77528>. This gets rid of two unnecessary 'using' declarations.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D77726

Files:
  mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp


Index: mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp
===================================================================
--- mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp
+++ mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp
@@ -1241,8 +1241,6 @@
 /// Lowering for AllocOp and AllocaOp.
 template <typename AllocLikeOp>
 struct AllocLikeOpLowering : public ConvertOpToLLVMPattern<AllocLikeOp> {
-  using ConvertOpToLLVMPattern<AllocLikeOp>::ConvertOpToLLVMPattern;
-  using Base = AllocLikeOpLowering<AllocLikeOp>;
   using ConvertOpToLLVMPattern<AllocLikeOp>::createIndexConstant;
   using ConvertOpToLLVMPattern<AllocLikeOp>::getIndexType;
   using ConvertOpToLLVMPattern<AllocLikeOp>::typeConverter;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77726.256007.patch
Type: text/x-patch
Size: 723 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200408/531a71ee/attachment.bin>


More information about the llvm-commits mailing list