blob: cf9b23ec1cb92bae6afd1bec32f754694390f9e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//===- MCNaCl.h - NaCl-specific code for MC --------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
namespace llvm {
class MCContext;
class MCStreamer;
class Triple;
/// Initialize target-specific bundle alignment and emit target-specific NaCl
/// ELF note sections.
void initializeNaClMCStreamer(MCStreamer &Streamer, MCContext &Ctx,
const Triple &TheTriple);
}
|