From 325aa050d595b9a1bbf0123ebfef029598624aee Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 18 Mar 2015 19:49:29 +0000 Subject: [PATCH] Fix use of uninitialized valued. Should bring the bots back. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232661 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/TargetRegistry.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/llvm/Support/TargetRegistry.h b/include/llvm/Support/TargetRegistry.h index 0a575ca7efa..4ecb9116924 100644 --- a/include/llvm/Support/TargetRegistry.h +++ b/include/llvm/Support/TargetRegistry.h @@ -235,8 +235,9 @@ namespace llvm { public: Target() - : NullTargetStreamerCtorFn(nullptr), AsmTargetStreamerCtorFn(nullptr), - MCRelocationInfoCtorFn(nullptr), MCSymbolizerCtorFn(nullptr) {} + : MCObjectStreamerCtorFn(nullptr), NullTargetStreamerCtorFn(nullptr), + AsmTargetStreamerCtorFn(nullptr), MCRelocationInfoCtorFn(nullptr), + MCSymbolizerCtorFn(nullptr) {} /// @name Target Information /// @{ -- 2.34.1