| OLD | NEW |
| 1 //===- subzero/src/IceInstX8632.h - x86-32 machine instructions -*- C++ -*-===// | 1 //===- subzero/src/IceInstX8632.h - x86-32 machine instructions -*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 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 /// \file | 10 /// \file |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 /// | 21 /// |
| 22 /// ::Ice::X8632::Traits::Insts::Mov::create | 22 /// ::Ice::X8632::Traits::Insts::Mov::create |
| 23 /// | 23 /// |
| 24 //===----------------------------------------------------------------------===// | 24 //===----------------------------------------------------------------------===// |
| 25 | 25 |
| 26 #ifndef SUBZERO_SRC_ICEINSTX8632_H | 26 #ifndef SUBZERO_SRC_ICEINSTX8632_H |
| 27 #define SUBZERO_SRC_ICEINSTX8632_H | 27 #define SUBZERO_SRC_ICEINSTX8632_H |
| 28 | 28 |
| 29 #include "IceDefs.h" | 29 #include "IceDefs.h" |
| 30 #include "IceInst.h" | 30 #include "IceInst.h" |
| 31 #define X86NAMESPACE X8632 |
| 31 #include "IceInstX86Base.h" | 32 #include "IceInstX86Base.h" |
| 33 #undef X86NAMESPACE |
| 32 #include "IceOperand.h" | 34 #include "IceOperand.h" |
| 33 #include "IceTargetLoweringX8632Traits.h" | 35 #include "IceTargetLoweringX8632Traits.h" |
| 34 | 36 |
| 35 #endif // SUBZERO_SRC_ICEINSTX8632_H | 37 #endif // SUBZERO_SRC_ICEINSTX8632_H |
| OLD | NEW |