[PATCH] D77719: [MLIR] Fix gcc-5 build failure cause by D77528
Uday Bondhugula via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 8 05:23:46 PDT 2020
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rGa59008a3a5b0: [MLIR] Fix gcc-5 build failure cause by D77528 (authored by bondhugula).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77719/new/
https://reviews.llvm.org/D77719
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
@@ -1602,9 +1602,7 @@
: AllocLikeOpLowering<AllocOp>(converter, useAlignedAlloc) {}
};
-struct AllocaOpLowering : public AllocLikeOpLowering<AllocaOp> {
- using Base::Base;
-};
+using AllocaOpLowering = AllocLikeOpLowering<AllocaOp>;
// A CallOp automatically promotes MemRefType to a sequence of alloca/store and
// passes the pointer to the MemRef across function boundaries.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77719.255983.patch
Type: text/x-patch
Size: 638 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200408/56c77a77/attachment.bin>
More information about the llvm-commits
mailing list