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(
1099
1099
// ===----------------------------------------------------------------------===//
1100
1100
// Pattern definition.
1101
1101
// ===----------------------------------------------------------------------===//
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
1102
1106
1103
1107
#include " src/Dialect/ONNX/Transforms/ONNXConstProp.inc"
1104
1108
1109
+ #if defined(_MSC_VER)
1110
+ # pragma warning(pop)
1111
+ #endif
1112
+
1105
1113
// ===----------------------------------------------------------------------===//
1106
1114
// Code to perform constant propagation for split.
1107
1115
// Not done with tablegen which doesn't support variadic results.
You can’t perform that action at this time.
0 commit comments