Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 //===- subzero/src/IceSwitchLowering.h - Switch lowering --------*- C++ -*-===// | 1 //===- subzero/src/IceSwitchLowering.h - Switch lowering --------*- 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 /// \file | 10 /// \file |
| 11 /// \brief The file contains helpers for switch lowering. | 11 /// \brief Contains helpers for switch lowering. |
|
Jim Stichnoth
2015/12/01 18:41:16
Maybe just "Helpers for switch lowering."
rkotlerimgtec
2015/12/02 01:32:48
Done.
| |
| 12 /// | |
| 12 //===----------------------------------------------------------------------===// | 13 //===----------------------------------------------------------------------===// |
| 13 | 14 |
| 14 #ifndef SUBZERO_SRC_ICESWITCHLOWERING_H | 15 #ifndef SUBZERO_SRC_ICESWITCHLOWERING_H |
| 15 #define SUBZERO_SRC_ICESWITCHLOWERING_H | 16 #define SUBZERO_SRC_ICESWITCHLOWERING_H |
| 16 | 17 |
| 17 #include "IceDefs.h" | 18 #include "IceDefs.h" |
| 18 | 19 |
| 19 namespace Ice { | 20 namespace Ice { |
| 20 | 21 |
| 21 class CaseCluster; | 22 class CaseCluster; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 98 IceString FuncName; | 99 IceString FuncName; |
| 99 SizeT Id; | 100 SizeT Id; |
| 100 TargetList TargetOffsets; | 101 TargetList TargetOffsets; |
| 101 }; | 102 }; |
| 102 | 103 |
| 103 using JumpTableDataList = std::vector<JumpTableData>; | 104 using JumpTableDataList = std::vector<JumpTableData>; |
| 104 | 105 |
| 105 } // end of namespace Ice | 106 } // end of namespace Ice |
| 106 | 107 |
| 107 #endif // SUBZERO_SRC_ICESWITCHLOWERING_H | 108 #endif // SUBZERO_SRC_ICESWITCHLOWERING_H |
| OLD | NEW |