summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit3b65187d2fe70f039f2de8a799dcd6f1310382f0 (patch)
treececeb3e55a99b2e557ef094c05d66bae6d10354f /llvm/lib/Bitcode/Reader
parent2ce0ac5a8c6773dbb36d20f93f78f481812e1a34 (diff)
downloadbcm5719-llvm-3b65187d2fe70f039f2de8a799dcd6f1310382f0.tar.gz
bcm5719-llvm-3b65187d2fe70f039f2de8a799dcd6f1310382f0.zip
Revert s/Raw/getBitMask/g name change. This is possibly causing LTO test hangings.
llvm-svn: 172020
Diffstat (limited to 'llvm/lib/Bitcode/Reader')
-rw-r--r--llvm/lib/Bitcode/Reader/BitcodeReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
index 59cda22503d..3bd64a92d36 100644
--- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/llvm/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) {
OpenPOWER on IntegriCloud