silence a warning, it isn't clear what the right answer is here,
will talk to steve.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69519 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp
index df62f0e..a517d81 100644
--- a/lib/CodeGen/CodeGenModule.cpp
+++ b/lib/CodeGen/CodeGenModule.cpp
@@ -1062,7 +1062,7 @@
 llvm::Constant *CodeGenModule::
 GetAddrOfConstantCFString(const StringLiteral *Literal) {
   std::string str;
-  unsigned StringLength;
+  unsigned StringLength = 0;
   
   bool isUTF16 = false;
   if (Literal->containsNonAsciiOrNull()) {