diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2012-11-21 19:59:51 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-11-21 19:59:51 +0000 |
commit | 26e6ad7b290abd4e5dcae1c6fbd5cae77a4beffe (patch) | |
tree | 27ecf1898c7617725e90f77b08c70e6d7a5b7d4a | |
parent | 81081b16eff58ea742b8e9f3ddce497dfc10a3ec (diff) | |
download | external_llvm-26e6ad7b290abd4e5dcae1c6fbd5cae77a4beffe.zip external_llvm-26e6ad7b290abd4e5dcae1c6fbd5cae77a4beffe.tar.gz external_llvm-26e6ad7b290abd4e5dcae1c6fbd5cae77a4beffe.tar.bz2 |
[mips] Add target operand flag enums for big GOT relocations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168450 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h b/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h index 233214b..94e0d20 100644 --- a/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h +++ b/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h @@ -84,7 +84,13 @@ namespace MipsII { /// MO_HIGHER/HIGHEST - Represents the highest or higher half word of a /// 64-bit symbol address. MO_HIGHER, - MO_HIGHEST + MO_HIGHEST, + + /// MO_GOT_HI16/LO16, MO_CALL_HI16/LO16 - Relocations used for large GOTs. + MO_GOT_HI16, + MO_GOT_LO16, + MO_CALL_HI16, + MO_CALL_LO16 }; enum { |