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