diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2009-12-23 17:49:57 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2009-12-23 17:49:57 +0000 |
commit | cfca1f0dc1cda1489ade1438b2a248029c62ead1 (patch) | |
tree | 1c30162f1c0237f7009c4394377b30edbde0607f /clang/lib/AST/DeclarationName.cpp | |
parent | 129819de71d66ab16bb786256589d7d5b0861fc6 (diff) | |
download | bcm5719-llvm-cfca1f0dc1cda1489ade1438b2a248029c62ead1.tar.gz bcm5719-llvm-cfca1f0dc1cda1489ade1438b2a248029c62ead1.zip |
move a few more symbols to .rodata/.data.rel.ro
llvm-svn: 92012
Diffstat (limited to 'clang/lib/AST/DeclarationName.cpp')
-rw-r--r-- | clang/lib/AST/DeclarationName.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/DeclarationName.cpp b/clang/lib/AST/DeclarationName.cpp index 0ce03c21405..60c40e24fb3 100644 --- a/clang/lib/AST/DeclarationName.cpp +++ b/clang/lib/AST/DeclarationName.cpp @@ -210,7 +210,7 @@ std::string DeclarationName::getAsString() const { } case CXXOperatorName: { - static const char *OperatorNames[NUM_OVERLOADED_OPERATORS] = { + static const char* const OperatorNames[NUM_OVERLOADED_OPERATORS] = { 0, #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ Spelling, |