mirror of
https://github.com/RPCSX/llvm.git
synced 2026-01-31 01:05:23 +01:00
This eliminates one overload on the term Raw. Differential Revision: https://reviews.llvm.org/D29098 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293104 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
671 B
C++
26 lines
671 B
C++
//===- Hash.h - PDB hash functions ------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_DEBUGINFO_PDB_RAW_HASH_H
|
|
#define LLVM_DEBUGINFO_PDB_RAW_HASH_H
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include <stdint.h>
|
|
|
|
namespace llvm {
|
|
namespace pdb {
|
|
uint32_t hashStringV1(StringRef Str);
|
|
uint32_t hashStringV2(StringRef Str);
|
|
uint32_t hashBufferV8(ArrayRef<uint8_t> Data);
|
|
}
|
|
}
|
|
|
|
#endif
|