Chromium Code Reviews| Index: include/llvm/MC/MCNaCl.h |
| diff --git a/include/llvm/MC/MCNaCl.h b/include/llvm/MC/MCNaCl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9f21b74fccb5865f0d10d9d9db0fc7b267abb2ea |
| --- /dev/null |
| +++ b/include/llvm/MC/MCNaCl.h |
| @@ -0,0 +1,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 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.
|
| +void initializeNaClMCStreamer(MCStreamer &Streamer, MCContext &Ctx, |
| + const Triple &TheTriple); |
| +} |