aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCNaCl.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/llvm/MC/MCNaCl.h b/include/llvm/MC/MCNaCl.h
index cf9b23ec1c..654131bc04 100644
--- a/include/llvm/MC/MCNaCl.h
+++ b/include/llvm/MC/MCNaCl.h
@@ -7,7 +7,17 @@
//
//===----------------------------------------------------------------------===//
+#include "llvm/Support/CommandLine.h"
+
namespace llvm {
+
+extern cl::opt<bool> FlagSfiZeroMask;
+extern cl::opt<bool> FlagSfiData;
+extern cl::opt<bool> FlagSfiLoad;
+extern cl::opt<bool> FlagSfiStore;
+extern cl::opt<bool> FlagSfiStack;
+extern cl::opt<bool> FlagSfiBranch;
+
class MCContext;
class MCStreamer;
class Triple;
@@ -15,4 +25,5 @@ class Triple;
/// ELF note sections.
void initializeNaClMCStreamer(MCStreamer &Streamer, MCContext &Ctx,
const Triple &TheTriple);
+
}