34 lines · c
1//===-- XtensaMCFixups.h - Xtensa-specific fixup entries --------*- C++ -*-===//2//3// The LLVM Compiler Infrastructure4//5// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.6// See https://llvm.org/LICENSE.txt for license information.7// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception8//9//===----------------------------------------------------------------------===//10 11#ifndef LLVM_LIB_TARGET_XTENSA_MCTARGETDESC_XTENSAMCFIXUPS_H12#define LLVM_LIB_TARGET_XTENSA_MCTARGETDESC_XTENSAMCFIXUPS_H13 14#include "llvm/MC/MCFixup.h"15 16namespace llvm {17namespace Xtensa {18enum FixupKind {19 fixup_xtensa_branch_6 = FirstTargetFixupKind,20 fixup_xtensa_branch_8,21 fixup_xtensa_branch_12,22 fixup_xtensa_jump_18,23 fixup_xtensa_call_18,24 fixup_xtensa_l32r_16,25 fixup_xtensa_loop_8,26 fixup_xtensa_invalid,27 LastTargetFixupKind,28 NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind29};30} // end namespace Xtensa31} // end namespace llvm32 33#endif // LLVM_LIB_TARGET_XTENSA_MCTARGETDESC_XTENSAMCFIXUPS_H34