summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/BTFDebugStub.cpp
blob: be487687dee2c79c7beaddf5ff84eebf7f0f64c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//===- llvm/lib/CodeGen/AsmPrinter/BTFDebugStub.cpp -------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
///
/// \file
/// This file is a stub for BTF generation support. The real implementation
/// is at BTFDebug.cpp which will be included if BPF target is built.
///
//===----------------------------------------------------------------------===//

#include "DebugHandlerBase.h"

namespace llvm {

/// Stub class for emitting the BTF .
class BTFDebug : public DebugHandlerBase {
public:
  BTFDebug(AsmPrinter *AP);
};

BTFDebug::BTFDebug(AsmPrinter *AP) : DebugHandlerBase(AP) {}

} // end namespace llvm
OpenPOWER on IntegriCloud