Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 //===- subzero/src/IceTypeConverter.h - Convert ICE/LLVM Types --*- C++ -*-===// | 1 //===- subzero/src/IceTypeConverter.h - Convert ICE/LLVM Types --*- 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 |
| 11 /// This file defines how to convert LLVM types to ICE types, and ICE types to | 11 /// \brief Defines how to convert LLVM types to ICE types, and ICE types to |
|
Jim Stichnoth
2015/12/01 18:41:17
Reflow to 80-col.
rkotlerimgtec
2015/12/02 01:32:48
Done.
| |
| 12 /// LLVM types. | 12 /// LLVM types. |
| 13 /// | 13 /// |
| 14 //===----------------------------------------------------------------------===// | 14 //===----------------------------------------------------------------------===// |
| 15 | 15 |
| 16 #ifndef SUBZERO_SRC_ICETYPECONVERTER_H | 16 #ifndef SUBZERO_SRC_ICETYPECONVERTER_H |
| 17 #define SUBZERO_SRC_ICETYPECONVERTER_H | 17 #define SUBZERO_SRC_ICETYPECONVERTER_H |
| 18 | 18 |
| 19 #include "IceDefs.h" | 19 #include "IceDefs.h" |
| 20 #include "IceTypes.h" | 20 #include "IceTypes.h" |
| 21 #pragma clang diagnostic push | 21 #pragma clang diagnostic push |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 56 /// Add LLVM/ICE pair to internal tables. | 56 /// Add LLVM/ICE pair to internal tables. |
| 57 void addLLVMType(Type Ty, llvm::Type *LLVMTy); | 57 void addLLVMType(Type Ty, llvm::Type *LLVMTy); |
| 58 | 58 |
| 59 /// Converts types not in LLVM2IceMap. | 59 /// Converts types not in LLVM2IceMap. |
| 60 Type convertToIceTypeOther(llvm::Type *LLVMTy) const; | 60 Type convertToIceTypeOther(llvm::Type *LLVMTy) const; |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // end of namespace Ice | 63 } // end of namespace Ice |
| 64 | 64 |
| 65 #endif // SUBZERO_SRC_ICETYPECONVERTER_H | 65 #endif // SUBZERO_SRC_ICETYPECONVERTER_H |
| OLD | NEW |