From: Rafael Espindola Date: Wed, 18 Mar 2015 19:49:29 +0000 (+0000) Subject: Fix use of uninitialized valued. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=325aa050d595b9a1bbf0123ebfef029598624aee;p=oota-llvm.git 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 --- 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 /// @{