From: Michael Liao Date: Wed, 31 May 2023 05:30:56 +0000 (-0400) Subject: [mlir] Add the missing non-member operator decl in the same namesapce. NFC X-Git-Tag: upstream/17.0.6~6707 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a33099f0fef958bed6fc7a09c7f0df1310ba6cfc;p=platform%2Fupstream%2Fllvm.git [mlir] Add the missing non-member operator decl in the same namesapce. NFC --- diff --git a/mlir/include/mlir/Interfaces/InferIntRangeInterface.h b/mlir/include/mlir/Interfaces/InferIntRangeInterface.h index 7df4cc8..05064a7 100644 --- a/mlir/include/mlir/Interfaces/InferIntRangeInterface.h +++ b/mlir/include/mlir/Interfaces/InferIntRangeInterface.h @@ -103,6 +103,8 @@ private: APInt uminVal, umaxVal, sminVal, smaxVal; }; +raw_ostream &operator<<(raw_ostream &, const ConstantIntRanges &); + /// The type of the `setResultRanges` callback provided to ops implementing /// InferIntRangeInterface. It should be called once for each integer result /// value and be passed the ConstantIntRanges corresponding to that value.