diff options
author | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-05-14 08:26:31 +0000 |
---|---|---|
committer | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-05-14 08:26:31 +0000 |
commit | 3dea421826ff4d793de8515bb062a62fd32e0185 (patch) | |
tree | adbf308b6f61a133b8a760aaafe59b4f9670ece2 /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | c3fd4802030b5fbbb6cf09f0ed5a4516766582d7 (diff) | |
download | bcm5719-llvm-3dea421826ff4d793de8515bb062a62fd32e0185.tar.gz bcm5719-llvm-3dea421826ff4d793de8515bb062a62fd32e0185.zip |
SwitchInst cosmetics: renamed "Hash" method to "hash"
llvm-svn: 156757
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 49b6e4f42ae..4387f099975 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -2280,7 +2280,7 @@ bool BitcodeReader::ParseFunctionBody(Function *F) { ConstantRangesSet Case = CaseBuilder.getCase(); SI->addCase(Case, DestBB); } - uint16_t Hash = SI->Hash(); + uint16_t Hash = SI->hash(); if (Hash != (Record[0] & 0xFFFF)) return Error("Invalid SWITCH record"); I = SI; |