Chromium Code Reviews| 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 namespace llvm { | |
| 11 class MCContext; | |
| 12 class MCStreamer; | |
| 13 class Triple; | |
| 14 /// Initialize target-specific bundle alignment and emit target-specific NaCl | |
| 15 /// ELF section headers. | |
|
Mark Seaborn
2013/05/10 19:52:46
'NaCl ELF section headers' -> 'NaCl ELF note secti
Derek Schuff
2013/05/10 22:59:26
Done.
| |
| 16 void initializeNaClMCStreamer(MCStreamer &Streamer, MCContext &Ctx, | |
| 17 const Triple &TheTriple); | |
| 18 } | |
| OLD | NEW |