diff options
author | Craig Topper <craig.topper@gmail.com> | 2012-05-24 06:35:32 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2012-05-24 06:35:32 +0000 |
commit | 9520719b9b62b6ff51faed81bfc550642ded6de0 (patch) | |
tree | 9018e92096844cb2978e5e90d3ea6bab4629aa43 /llvm/lib/Object/MachOObjectFile.cpp | |
parent | 273b0d7be5961392b77359f3c150fa955ce9fefa (diff) | |
download | bcm5719-llvm-9520719b9b62b6ff51faed81bfc550642ded6de0.tar.gz bcm5719-llvm-9520719b9b62b6ff51faed81bfc550642ded6de0.zip |
Mark some static arrays as const.
llvm-svn: 157377
Diffstat (limited to 'llvm/lib/Object/MachOObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/MachOObjectFile.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp index 5de945300c6..d229671954f 100644 --- a/llvm/lib/Object/MachOObjectFile.cpp +++ b/llvm/lib/Object/MachOObjectFile.cpp @@ -788,7 +788,7 @@ error_code MachOObjectFile::getRelocationTypeName(DataRefImpl Rel, switch (Arch) { case Triple::x86: { - const char* Table[] = { + static const char *const Table[] = { "GENERIC_RELOC_VANILLA", "GENERIC_RELOC_PAIR", "GENERIC_RELOC_SECTDIFF", @@ -803,7 +803,7 @@ error_code MachOObjectFile::getRelocationTypeName(DataRefImpl Rel, break; } case Triple::x86_64: { - const char* Table[] = { + static const char *const Table[] = { "X86_64_RELOC_UNSIGNED", "X86_64_RELOC_SIGNED", "X86_64_RELOC_BRANCH", @@ -822,7 +822,7 @@ error_code MachOObjectFile::getRelocationTypeName(DataRefImpl Rel, break; } case Triple::arm: { - const char* Table[] = { + static const char *const Table[] = { "ARM_RELOC_VANILLA", "ARM_RELOC_PAIR", "ARM_RELOC_SECTDIFF", @@ -841,7 +841,7 @@ error_code MachOObjectFile::getRelocationTypeName(DataRefImpl Rel, break; } case Triple::ppc: { - const char* Table[] = { + static const char *const Table[] = { "PPC_RELOC_VANILLA", "PPC_RELOC_PAIR", "PPC_RELOC_BR14", |