1 //===- TpiHashing.h ---------------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLVM_DEBUGINFO_PDB_TPIHASHING_H 11 #define LLVM_DEBUGINFO_PDB_TPIHASHING_H 12 13 #include "llvm/DebugInfo/CodeView/TypeRecord.h" 14 #include "llvm/Support/Error.h" 15 16 namespace llvm { 17 namespace pdb { 18 19 Expected<uint32_t> hashTypeRecord(const llvm::codeview::CVType &Type); 20 21 } // end namespace pdb 22 } // end namespace llvm 23 24 #endif // LLVM_DEBUGINFO_PDB_TPIHASHING_H 25