From: Rafael Espindola Date: Wed, 18 Mar 2015 19:49:29 +0000 (+0000) Subject: Fix use of uninitialized valued. X-Git-Tag: llvmorg-3.7.0-rc1~8876 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d86b235119e4bd90c944228803c2d6fa622f3f8;p=platform%2Fupstream%2Fllvm.git Fix use of uninitialized valued. Should bring the bots back. llvm-svn: 232661 --- diff --git a/llvm/include/llvm/Support/TargetRegistry.h b/llvm/include/llvm/Support/TargetRegistry.h index 0a575ca..4ecb911 100644 --- a/llvm/include/llvm/Support/TargetRegistry.h +++ b/llvm/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 /// @{