summaryrefslogtreecommitdiff
path: root/lib/Bitcode/Reader
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-01-09 23:36:50 +0000
committerBill Wendling <isanbard@gmail.com>2013-01-09 23:36:50 +0000
commit1db9b6957c2565a2322206bd5907530895f1c7ac (patch)
treeee7003977a4b12b1bd6a2252bdb3a603534a5a19 /lib/Bitcode/Reader
parente92800dd533988c46e58b0f4226df76a3bb1cb0c (diff)
downloadllvm-1db9b6957c2565a2322206bd5907530895f1c7ac.tar.gz
llvm-1db9b6957c2565a2322206bd5907530895f1c7ac.tar.bz2
llvm-1db9b6957c2565a2322206bd5907530895f1c7ac.tar.xz
Revert s/Raw/getBitMask/g name change. This is possibly causing LTO test hangings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172020 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Reader')
-rw-r--r--lib/Bitcode/Reader/BitcodeReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp
index 59cda22503..3bd64a92d3 100644
--- a/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/lib/Bitcode/Reader/BitcodeReader.cpp
@@ -477,7 +477,7 @@ bool BitcodeReader::ParseAttributeBlock() {
for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Attribute ReconstitutedAttr =
Attribute::decodeLLVMAttributesForBitcode(Context, Record[i+1]);
- Record[i+1] = ReconstitutedAttr.getBitMask();
+ Record[i+1] = ReconstitutedAttr.Raw();
}
for (unsigned i = 0, e = Record.size(); i != e; i += 2) {