diff options
Diffstat (limited to 'clang/lib/Sema')
| -rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 2 | ||||
| -rw-r--r-- | clang/lib/Sema/SemaExprObjC.cpp | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index cd049a27c1b..a39ba2f7d06 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -370,7 +370,7 @@ Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {    if (Literal.Pascal) StrTy = Context.UnsignedCharTy;    // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). -  if (getLangOptions().CPlusPlus) +  if (getLangOptions().CPlusPlus || getLangOptions().ConstStrings )      StrTy.addConst();    // Get an array type for the string, according to C99 6.4.5.  This includes diff --git a/clang/lib/Sema/SemaExprObjC.cpp b/clang/lib/Sema/SemaExprObjC.cpp index c60455d8456..c98ba435c78 100644 --- a/clang/lib/Sema/SemaExprObjC.cpp +++ b/clang/lib/Sema/SemaExprObjC.cpp @@ -106,7 +106,7 @@ Expr *Sema::BuildObjCEncodeExpression(SourceLocation AtLoc,      // which is an array type.      StrTy = Context.CharTy;      // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). -    if (getLangOptions().CPlusPlus) +    if (getLangOptions().CPlusPlus || getLangOptions().ConstStrings)        StrTy.addConst();      StrTy = Context.getConstantArrayType(StrTy, llvm::APInt(32, Str.size()+1),                                           ArrayType::Normal, 0); | 

