diff options
| -rw-r--r-- | llvm/include/llvm/ADT/Twine.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/ADT/Twine.h b/llvm/include/llvm/ADT/Twine.h index 4140c22aad3..2dc7486c924 100644 --- a/llvm/include/llvm/ADT/Twine.h +++ b/llvm/include/llvm/ADT/Twine.h @@ -153,11 +153,11 @@ namespace llvm {      /// LHS - The prefix in the concatenation, which may be uninitialized for      /// Null or Empty kinds. -    Child LHS; +    Child LHS = {0};      /// RHS - The suffix in the concatenation, which may be uninitialized for      /// Null or Empty kinds. -    Child RHS; +    Child RHS = {0};      /// LHSKind - The NodeKind of the left hand side, \see getLHSKind().      NodeKind LHSKind = EmptyKind;  | 

