summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenModule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r--clang/lib/CodeGen/CodeGenModule.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp
index 43217656076..c417cf8ec93 100644
--- a/clang/lib/CodeGen/CodeGenModule.cpp
+++ b/clang/lib/CodeGen/CodeGenModule.cpp
@@ -1215,16 +1215,15 @@ GetAddrOfConstantCFString(const StringLiteral *Literal) {
StringLength = ToPtr-&ToBuf[0];
str.assign((char *)&ToBuf[0], StringLength*2);// Twice as many UTF8 chars.
isUTF16 = true;
- } else if (Result == sourceIllegal) {
+ } else {
+ assert(Result == sourceIllegal && "UTF-8 to UTF-16 conversion failed");
// FIXME: Have Sema::CheckObjCString() validate the UTF-8 string.
- str.assign(Literal->getStrData(), Literal->getByteLength());
- StringLength = str.length();
- } else
- assert(Result == conversionOK && "UTF-8 to UTF-16 conversion failed");
-
+ StringLength = Literal->getByteLength();
+ str.assign(Literal->getStrData(), StringLength);
+ }
} else {
- str.assign(Literal->getStrData(), Literal->getByteLength());
- StringLength = str.length();
+ StringLength = Literal->getByteLength();
+ str.assign(Literal->getStrData(), StringLength);
}
llvm::Constant *&Entry = CFConstantStringMap[str];
OpenPOWER on IntegriCloud