We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d51d37 commit afd729eCopy full SHA for afd729e
mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp
@@ -2030,6 +2030,9 @@ struct AlignedAllocOpLowering : public AllocLikeOpLowering {
2030
static constexpr uint64_t kMinAlignedAllocAlignment = 16UL;
2031
};
2032
2033
+// Out of line definition, required till C++17.
2034
+constexpr uint64_t AlignedAllocOpLowering::kMinAlignedAllocAlignment;
2035
+
2036
struct AllocaOpLowering : public AllocLikeOpLowering {
2037
AllocaOpLowering(LLVMTypeConverter &converter)
2038
: AllocLikeOpLowering(AllocaOp::getOperationName(), converter) {}
0 commit comments