[Mlir-commits] [mlir] 2b05527 - [mlir][Arith] Fix Windows build

Matthias Springer llvmlistbot at llvm.org
Tue Apr 18 01:30:20 PDT 2023


Author: Matthias Springer
Date: 2023-04-18T17:30:01+09:00
New Revision: 2b0552793b2770a25895b0b28029d0e5ab3e3794

URL: https://github.com/llvm/llvm-project/commit/2b0552793b2770a25895b0b28029d0e5ab3e3794
DIFF: https://github.com/llvm/llvm-project/commit/2b0552793b2770a25895b0b28029d0e5ab3e3794.diff

LOG: [mlir][Arith] Fix Windows build

Added: 
    

Modified: 
    mlir/lib/Dialect/Arith/Transforms/ReifyValueBounds.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Dialect/Arith/Transforms/ReifyValueBounds.cpp b/mlir/lib/Dialect/Arith/Transforms/ReifyValueBounds.cpp
index dcad56e90f6c..787d4989bbab 100644
--- a/mlir/lib/Dialect/Arith/Transforms/ReifyValueBounds.cpp
+++ b/mlir/lib/Dialect/Arith/Transforms/ReifyValueBounds.cpp
@@ -56,6 +56,7 @@ static Value buildArithValue(OpBuilder &b, Location loc, AffineMap map,
                                buildExpr(binaryExpr.getRHS()));
     }
     }
+    llvm_unreachable("unsupported AffineExpr kind");
   };
   return buildExpr(map.getResult(0));
 }


        


More information about the Mlir-commits mailing list