diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2013-06-21 14:42:49 +0000 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2013-06-21 14:42:49 +0000 |
commit | d2849572463da994c685b3bd7a60d5a7566c01e3 (patch) | |
tree | f1fd6fa0bc1ebc4a4d27ece33ef57b3533383df0 /include | |
parent | 92cfa61c50d01307d658753f8d47f4e8555a6fa9 (diff) | |
download | external_llvm-d2849572463da994c685b3bd7a60d5a7566c01e3.zip external_llvm-d2849572463da994c685b3bd7a60d5a7566c01e3.tar.gz external_llvm-d2849572463da994c685b3bd7a60d5a7566c01e3.tar.bz2 |
[PowerPC] Support @h modifier
This adds necessary infrastructure to support the @h modifier.
Note that all required relocation types were already present
(and unused).
This patch provides support for using @h in the assembler;
it would also be possible to now use this feature in code
generated by the compiler, but this is not done yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184548 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCExpr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/MC/MCExpr.h b/include/llvm/MC/MCExpr.h index a4dada2..7edcd66 100644 --- a/include/llvm/MC/MCExpr.h +++ b/include/llvm/MC/MCExpr.h @@ -172,6 +172,7 @@ public: VK_ARM_PREL31, VK_PPC_LO, // symbol@l + VK_PPC_HI, // symbol@h VK_PPC_HA, // symbol@ha VK_PPC_TOCBASE, // symbol@tocbase VK_PPC_TOC, // symbol@toc |