aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Mips/MipsMCAsmInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-25 21:10:10 +0000
committerChris Lattner <sabre@nondot.org>2010-01-25 21:10:10 +0000
commit78f485afb723121eedf4b6907ae6eb53da8af03c (patch)
tree33ce4077f681dcb4ec7676ad7ab0c37a667feb13 /lib/Target/Mips/MipsMCAsmInfo.cpp
parenta86106ed88582b913ac2394a5a4ad1868b299da4 (diff)
downloadexternal_llvm-78f485afb723121eedf4b6907ae6eb53da8af03c.zip
external_llvm-78f485afb723121eedf4b6907ae6eb53da8af03c.tar.gz
external_llvm-78f485afb723121eedf4b6907ae6eb53da8af03c.tar.bz2
rename MAI::PICJumpTableDirective to MAI::GPRel32Directive to
make it clear what it is, instead of how it is used. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94448 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsMCAsmInfo.cpp')
-rw-r--r--lib/Target/Mips/MipsMCAsmInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsMCAsmInfo.cpp b/lib/Target/Mips/MipsMCAsmInfo.cpp
index 2fa2762..c5356f0 100644
--- a/lib/Target/Mips/MipsMCAsmInfo.cpp
+++ b/lib/Target/Mips/MipsMCAsmInfo.cpp
@@ -22,5 +22,5 @@ MipsMCAsmInfo::MipsMCAsmInfo(const Target &T, const StringRef &TT) {
PrivateGlobalPrefix = "$";
CommentString = "#";
ZeroDirective = "\t.space\t";
- PICJumpTableDirective = "\t.gpword\t";
+ GPRel32Directive = "\t.gpword\t";
}