| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 //===-- MipsNaClRewritePass.h - NaCl Sandboxing Pass    ------- --*- C++ -*-===/
    / | 
|  | 2 // | 
|  | 3 //                     The LLVM Compiler Infrastructure | 
|  | 4 // | 
|  | 5 //===----------------------------------------------------------------------===// | 
|  | 6 | 
|  | 7 #ifndef TARGET_MIPSNACLREWRITEPASS_H | 
|  | 8 #define TARGET_MIPSNACLREWRITEPASS_H | 
|  | 9 | 
|  | 10 #include "llvm/Target/TargetRegisterInfo.h" | 
|  | 11 #include "llvm/CodeGen/MachineInstr.h" | 
|  | 12 #include "llvm/Support/CommandLine.h" | 
|  | 13 | 
|  | 14 namespace llvm { | 
|  | 15   extern cl::opt<bool> FlagSfiZeroMask; | 
|  | 16   extern cl::opt<bool> FlagSfiData; | 
|  | 17   extern cl::opt<bool> FlagSfiLoad; | 
|  | 18   extern cl::opt<bool> FlagSfiStore; | 
|  | 19   extern cl::opt<bool> FlagSfiStack; | 
|  | 20   extern cl::opt<bool> FlagSfiBranch; | 
|  | 21 } | 
|  | 22 | 
|  | 23 #endif | 
| OLD | NEW | 
|---|