projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2aee73f
)
[CodeGenModule] BlockByrefHelpers - add missing uninitialized variables to constructo...
author
Simon Pilgrim
<llvm-dev@redking.me.uk>
Tue, 21 May 2019 11:37:54 +0000
(11:37 +0000)
committer
Simon Pilgrim
<llvm-dev@redking.me.uk>
Tue, 21 May 2019 11:37:54 +0000
(11:37 +0000)
llvm-svn: 361242
clang/lib/CodeGen/CodeGenModule.h
patch
|
blob
|
history
diff --git
a/clang/lib/CodeGen/CodeGenModule.h
b/clang/lib/CodeGen/CodeGenModule.h
index 332177f66428f3435112958b5b1d8d25428f7bbf..6ab454fe6da906ea1383679f23263da91d5b1234 100644
(file)
--- a/
clang/lib/CodeGen/CodeGenModule.h
+++ b/
clang/lib/CodeGen/CodeGenModule.h
@@
-254,7
+254,8
@@
public:
/// have different helper functions.
CharUnits Alignment;
- BlockByrefHelpers(CharUnits alignment) : Alignment(alignment) {}
+ BlockByrefHelpers(CharUnits alignment)
+ : CopyHelper(nullptr), DisposeHelper(nullptr), Alignment(alignment) {}
BlockByrefHelpers(const BlockByrefHelpers &) = default;
virtual ~BlockByrefHelpers();