diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-18 19:49:29 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-18 19:49:29 +0000 |
commit | 3d86b235119e4bd90c944228803c2d6fa622f3f8 (patch) | |
tree | 8d4fd9ab21705edf527287b467569af876233bda | |
parent | 5c837edc2a3a2188884a7d9b96f02322999ad744 (diff) | |
download | bcm5719-llvm-3d86b235119e4bd90c944228803c2d6fa622f3f8.tar.gz bcm5719-llvm-3d86b235119e4bd90c944228803c2d6fa622f3f8.zip |
Fix use of uninitialized valued.
Should bring the bots back.
llvm-svn: 232661
-rw-r--r-- | llvm/include/llvm/Support/TargetRegistry.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/TargetRegistry.h b/llvm/include/llvm/Support/TargetRegistry.h index 0a575ca7efa..4ecb9116924 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 /// @{ |