From f514b0e144db063931d19a8ebc2dc42083d0eb2f Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Wed, 1 Feb 2023 17:30:05 -0800 Subject: [PATCH] Uninitialize the file descriptor. Unblocking the build. Investigating why the value can't be initialized (even to e.g. -1) before calling open. --- llvm/include/llvm/Analysis/InteractiveModelRunner.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.7.4