From: Mircea Trofin Date: Thu, 2 Feb 2023 01:30:05 +0000 (-0800) Subject: Uninitialize the file descriptor. X-Git-Tag: upstream/17.0.6~18867 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f514b0e144db063931d19a8ebc2dc42083d0eb2f;p=platform%2Fupstream%2Fllvm.git Uninitialize the file descriptor. Unblocking the build. Investigating why the value can't be initialized (even to e.g. -1) before calling open. --- diff --git a/llvm/include/llvm/Analysis/InteractiveModelRunner.h b/llvm/include/llvm/Analysis/InteractiveModelRunner.h index efec9d0..16fc098 100644 --- a/llvm/include/llvm/Analysis/InteractiveModelRunner.h +++ b/llvm/include/llvm/Analysis/InteractiveModelRunner.h @@ -61,7 +61,7 @@ private: const TensorSpec OutputSpec; std::error_code OutEC; std::error_code InEC; - int Inbound = 0; + int Inbound; std::vector OutputBuffer; std::unique_ptr Log; };