brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1019 B · 92708da Raw
30 lines · c
1//=- WebAssemblyFixupKinds.h - WebAssembly Specific Fixup Entries -*- C++ -*-=//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYFIXUPKINDS_H10#define LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYFIXUPKINDS_H11 12#include "llvm/MC/MCFixup.h"13 14namespace llvm {15namespace WebAssembly {16enum Fixups {17  fixup_sleb128_i32 = FirstTargetFixupKind, // 32-bit signed18  fixup_sleb128_i64,                        // 64-bit signed19  fixup_uleb128_i32,                        // 32-bit unsigned20  fixup_uleb128_i64,                        // 64-bit unsigned21 22  // Marker23  LastTargetFixupKind,24  NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind25};26} // end namespace WebAssembly27} // end namespace llvm28 29#endif30