aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/BPF/BPF.h
blob: 4a0cb20357c8c07053f34eafcad5f944e28b3ae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//===-- BPF.h - Top-level interface for BPF representation ------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIB_TARGET_BPF_BPF_H
#define LLVM_LIB_TARGET_BPF_BPF_H

#include "MCTargetDesc/BPFMCTargetDesc.h"
#include "llvm/Target/TargetMachine.h"

namespace llvm {
class BPFTargetMachine;

FunctionPass *createBPFISelDag(BPFTargetMachine &TM);
}

#endif