зеркало из https://github.com/microsoft/clang-1.git
Bug fix, inline string literals were getting an extra '\0'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54608 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
d1a0b6d3df
Коммит
ec5c2a7646
|
@ -907,7 +907,7 @@ static llvm::Constant *GenerateStringLiteral(const std::string &str,
|
||||||
bool constant,
|
bool constant,
|
||||||
CodeGenModule &CGM) {
|
CodeGenModule &CGM) {
|
||||||
// Create Constant for this string literal
|
// Create Constant for this string literal
|
||||||
llvm::Constant *C=llvm::ConstantArray::get(str);
|
llvm::Constant *C = llvm::ConstantArray::get(str, false);
|
||||||
|
|
||||||
// Create a global variable for this string
|
// Create a global variable for this string
|
||||||
C = new llvm::GlobalVariable(C->getType(), constant,
|
C = new llvm::GlobalVariable(C->getType(), constant,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче