Section relative fixups are a coff concept, not a x86 one. Replace the
[oota-llvm.git] / include / llvm / MC / MCFixup.h
index 740427083d54141177aeabfd1a3b63b517069db3..4aa361b2df90165d031dc0d6b63cc7e604af3920 100644 (file)
@@ -30,6 +30,10 @@ enum MCFixupKind {
   FK_GPRel_2,    ///< A two-byte gp relative fixup.
   FK_GPRel_4,    ///< A four-byte gp relative fixup.
   FK_GPRel_8,    ///< A eight-byte gp relative fixup.
+  FK_SecRel_1,   ///< A one-byte section relative fixup.
+  FK_SecRel_2,   ///< A two-byte section relative fixup.
+  FK_SecRel_4,   ///< A four-byte section relative fixup.
+  FK_SecRel_8,   ///< A eight-byte section relative fixup.
 
   FirstTargetFixupKind = 128,