diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-25 21:10:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-25 21:10:10 +0000 |
commit | 19bd0398962e93f6df51f40ab1a88892f73a7b4a (patch) | |
tree | 883f2f6f503a09bc7d0514e84fb19207e0e6f949 /llvm/lib/Target/Mips/MipsMCAsmInfo.cpp | |
parent | 6dc73bc1837460d9e49373ff0f1d01e63a82cbf2 (diff) | |
download | bcm5719-llvm-19bd0398962e93f6df51f40ab1a88892f73a7b4a.tar.gz bcm5719-llvm-19bd0398962e93f6df51f40ab1a88892f73a7b4a.zip |
rename MAI::PICJumpTableDirective to MAI::GPRel32Directive to
make it clear what it is, instead of how it is used.
llvm-svn: 94448
Diffstat (limited to 'llvm/lib/Target/Mips/MipsMCAsmInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsMCAsmInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsMCAsmInfo.cpp b/llvm/lib/Target/Mips/MipsMCAsmInfo.cpp index 2fa276298e5..c5356f0e23a 100644 --- a/llvm/lib/Target/Mips/MipsMCAsmInfo.cpp +++ b/llvm/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"; } |