summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCExpr.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-05-12 05:16:34 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-05-12 05:16:34 +0000
commit18c1021ec108722506125926087b1e5fcfb28046 (patch)
tree7bd0bad00f64ec2b67dad2b70c9741cca6847a15 /include/llvm/MC/MCExpr.h
parent72c2a83951518f68a2020152b13f6529c9b71a1c (diff)
downloadllvm-18c1021ec108722506125926087b1e5fcfb28046.tar.gz
llvm-18c1021ec108722506125926087b1e5fcfb28046.tar.bz2
llvm-18c1021ec108722506125926087b1e5fcfb28046.tar.xz
Add support for movi32 of global values to the new (MC) asm printer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103576 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCExpr.h')
-rw-r--r--include/llvm/MC/MCExpr.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/MC/MCExpr.h b/include/llvm/MC/MCExpr.h
index bd0684df67..bb8f2bb135 100644
--- a/include/llvm/MC/MCExpr.h
+++ b/include/llvm/MC/MCExpr.h
@@ -134,7 +134,9 @@ public:
VK_NTPOFF,
VK_PLT,
VK_TLSGD,
- VK_TPOFF
+ VK_TPOFF,
+ VK_ARM_HI16, // The R_ARM_MOVT_ABS relocation (:upper16: in the asm file)
+ VK_ARM_LO16 // The R_ARM_MOVW_ABS_NC relocation (:lower16: in the asm file)
};
private: