File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/Dialect/ONNX/Transforms Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -1099,9 +1099,17 @@ Value ConstPropNonZero(
10991099// ===----------------------------------------------------------------------===//
11001100// Pattern definition.
11011101// ===----------------------------------------------------------------------===//
1102+ #if defined(_MSC_VER)
1103+ # pragma warning(push)
1104+ # pragma warning(disable : 4927) // Disable warning: illegal conversion; more than one user-defined conversion has been implicitly applied
1105+ #endif
11021106
11031107#include " src/Dialect/ONNX/Transforms/ONNXConstProp.inc"
11041108
1109+ #if defined(_MSC_VER)
1110+ # pragma warning(pop)
1111+ #endif
1112+
11051113// ===----------------------------------------------------------------------===//
11061114// Code to perform constant propagation for split.
11071115// Not done with tablegen which doesn't support variadic results.
You can’t perform that action at this time.
0 commit comments