brintos

brintos / llvm-project-archived public Read only

0
0
Text · 931 B · af3542e Raw
26 lines · c
1//===============-  BPFTargetLoweringObjectFile.h  -*- 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_BPF_BPFTARGETLOWERINGOBJECTFILE10#define LLVM_LIB_TARGET_BPF_BPFTARGETLOWERINGOBJECTFILE11 12#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"13#include "llvm/Target/TargetLoweringObjectFile.h"14 15namespace llvm {16class BPFTargetLoweringObjectFileELF : public TargetLoweringObjectFileELF {17 18public:19  MCSection *20  getSectionForJumpTable(const Function &F, const TargetMachine &TM,21                         const MachineJumpTableEntry *JTE) const override;22};23} // namespace llvm24 25#endif // LLVM_LIB_TARGET_BPF_BPFTARGETLOWERINGOBJECTFILE26