OLD | NEW |
1 //===-- X86MCNaCl.h - Prototype for CustomExpandInstNaClX86 ---*- C++ -*-===// | 1 //===-- X86MCNaCl.h - Prototype for CustomExpandInstNaClX86 ---*- C++ -*-===// |
2 // | 2 // |
3 // The LLVM Compiler Infrastructure | 3 // The LLVM Compiler Infrastructure |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 | 9 |
10 #ifndef X86MCNACL_H | 10 #ifndef X86MCNACL_H |
11 #define X86MCNACL_H | 11 #define X86MCNACL_H |
12 | 12 |
13 namespace llvm { | 13 namespace llvm { |
14 class MCInst; | 14 class MCInst; |
15 class MCStreamer; | 15 class MCStreamer; |
16 struct X86MCNaClSFIState { | 16 struct X86MCNaClSFIState { |
17 unsigned PrefixSaved; | 17 unsigned PrefixSaved; |
18 bool PrefixPass; | 18 bool PrefixPass; |
| 19 bool EmitRaw; |
19 }; | 20 }; |
20 bool CustomExpandInstNaClX86(const MCInst &Inst, MCStreamer &Out, | 21 bool CustomExpandInstNaClX86(const MCInst &Inst, MCStreamer &Out, |
21 X86MCNaClSFIState &State); | 22 X86MCNaClSFIState &State); |
22 } | 23 } |
23 | 24 |
24 #endif | 25 #endif |
OLD | NEW |