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